diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-04-10 19:40:34 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-12-27 00:54:41 -0500 |
commit | 5e744ef887c1e879052cb30783638807190275f8 (patch) | |
tree | decd6ae4c1ff57a091e5e9fbdcdda1abcfe5e502 /sim/sh64 | |
parent | sim: punt WITH_DEVICES & tconfig.h support (diff) | |
download | binutils-gdb-5e744ef887c1e879052cb30783638807190275f8.tar.gz binutils-gdb-5e744ef887c1e879052cb30783638807190275f8.tar.bz2 binutils-gdb-5e744ef887c1e879052cb30783638807190275f8.zip |
sim: unify sim-hload
Pretty much all targets are using this module already, so add it to the
common list of objects. The only oddball out here is cris and that's
because it supports loading via an offset for all the phdrs. We drop
support for that.
Diffstat (limited to 'sim/sh64')
-rw-r--r-- | sim/sh64/ChangeLog | 4 | ||||
-rw-r--r-- | sim/sh64/Makefile.in | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sim/sh64/ChangeLog b/sim/sh64/ChangeLog index 7fc3982cb53..945ec35c4fb 100644 --- a/sim/sh64/ChangeLog +++ b/sim/sh64/ChangeLog @@ -1,3 +1,7 @@ +2015-12-27 Mike Frysinger <vapier@gentoo.org> + + * Makefile.in (SIM_OBJS): Delete sim-hload.o. + 2015-12-26 Mike Frysinger <vapier@gentoo.org> * config.in, configure: Regenerate. diff --git a/sim/sh64/Makefile.in b/sim/sh64/Makefile.in index aa84c8d35ac..903eecfb03c 100644 --- a/sim/sh64/Makefile.in +++ b/sim/sh64/Makefile.in @@ -23,7 +23,6 @@ SH64_OBJS = sh64.o cpu.o sh-desc.o \ SIM_OBJS = \ $(SIM_NEW_COMMON_OBJS) \ - sim-hload.o \ cgen-utils.o cgen-trace.o cgen-scache.o \ cgen-run.o \ sim-if.o arch.o \ |