diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-12-25 04:27:27 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-12-25 04:40:31 -0500 |
commit | 0d58595077841917ad57c9f8d2a61184a504ef40 (patch) | |
tree | 700d848c63f82b4284abebb23b1689a2272eb108 /sim/iq2000 | |
parent | 8a0ebee658862bec66191df192c1d3b09bf0c943 (diff) | |
download | binutils-gdb-0d58595077841917ad57c9f8d2a61184a504ef40.tar.gz |
sim: sim-model: build for everyone
Rather than include this for some targets, set it up so we can build it
all the time via the common code. This makes it easier for targets to
opt into it when they're ready, increases build coverage, and allows us
to centralize much of the logic.
We also get to delete tconfig.h from two more targets -- they were
setting WITH_DEVICES to 0 which has the same behavior as not defining
it at all.
While the SIM_HAVE_MODEL knob is gone, we now have WITH_MODEL_P, but it
is only used by the common sim-model code. We use it to declare dummy
model lists when the arch hasn't created its own.
Diffstat (limited to 'sim/iq2000')
-rw-r--r-- | sim/iq2000/ChangeLog | 5 | ||||
-rw-r--r-- | sim/iq2000/Makefile.in | 1 | ||||
-rw-r--r-- | sim/iq2000/tconfig.h | 7 |
3 files changed, 5 insertions, 8 deletions
diff --git a/sim/iq2000/ChangeLog b/sim/iq2000/ChangeLog index 03cc0237ef3..4ee58391d67 100644 --- a/sim/iq2000/ChangeLog +++ b/sim/iq2000/ChangeLog @@ -1,5 +1,10 @@ 2015-12-25 Mike Frysinger <vapier@gentoo.org> + * Makefile.in (SIM_OBJS): Delete sim-model.o. + * tconfig.h: Delete file. + +2015-12-25 Mike Frysinger <vapier@gentoo.org> + * arch.c: Rename MACH to SIM_MACH. * cpuall.h: Likewise. * model.c: Rename MACH to SIM_MACH, MACH_IMP_PROPERTIES to diff --git a/sim/iq2000/Makefile.in b/sim/iq2000/Makefile.in index 3ca39242942..24c4a9b28b6 100644 --- a/sim/iq2000/Makefile.in +++ b/sim/iq2000/Makefile.in @@ -22,7 +22,6 @@ IQ2000_OBJS = iq2000.o cpu.o decode.o sem.o model.o mloop.o SIM_OBJS = \ $(SIM_NEW_COMMON_OBJS) \ sim-hload.o \ - sim-model.o \ cgen-utils.o cgen-trace.o cgen-scache.o \ cgen-run.o \ sim-if.o arch.o \ diff --git a/sim/iq2000/tconfig.h b/sim/iq2000/tconfig.h deleted file mode 100644 index cf63d449ac9..00000000000 --- a/sim/iq2000/tconfig.h +++ /dev/null @@ -1,7 +0,0 @@ -/* IQ2000 target configuration file. -*- C -*- */ - -/* For MSPR support. FIXME: revisit. */ -#define WITH_DEVICES 0 - -/* ??? Temporary hack until model support unified. */ -#define SIM_HAVE_MODEL |