diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-30 03:05:57 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-30 12:58:24 -0400 |
commit | 49d62f892578dab739391b7309bc60ea2baeafc4 (patch) | |
tree | 5520688d7704c2cbae7644b0fe1f85254c10136a /sim/arm/Makefile.in | |
parent | dbf8e8afcdf6bbec4ecaf911481b7fc9a4a01e87 (diff) | |
download | gdb-49d62f892578dab739391b7309bc60ea2baeafc4.zip gdb-49d62f892578dab739391b7309bc60ea2baeafc4.tar.gz gdb-49d62f892578dab739391b7309bc60ea2baeafc4.tar.bz2 |
sim: arm: convert to nrun
A lot of cpu state is stored in global variables, as is memory handling.
The sim_size support needs unwinding at some point. But at least this
is an improvement on the status quo.
Diffstat (limited to 'sim/arm/Makefile.in')
-rw-r--r-- | sim/arm/Makefile.in | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/sim/arm/Makefile.in b/sim/arm/Makefile.in index 1b2ed6a..241911b 100644 --- a/sim/arm/Makefile.in +++ b/sim/arm/Makefile.in @@ -17,14 +17,15 @@ ## COMMON_PRE_CONFIG_FRAG -SIM_EXTRA_CFLAGS = -DMODET -DSIM_TARGET_SWITCHES \ - -DSIM_USE_DEPRECATED_RUN_FRONTEND - -# Use the deprecated run frontend until we migrate to nrun.o -SIM_RUN_OBJS = run.o - -SIM_OBJS = armemu26.o armemu32.o arminit.o armos.o armsupp.o \ - armvirt.o bag.o thumbemu.o wrapper.o sim-load.o \ +SIM_EXTRA_CFLAGS = -DMODET + +SIM_OBJS = \ + $(SIM_NEW_COMMON_OBJS) \ + sim-cpu.o \ + sim-engine.o \ + sim-hload.o \ + armemu26.o armemu32.o arminit.o armos.o armsupp.o \ + armvirt.o bag.o thumbemu.o wrapper.o \ armcopro.o maverick.o iwmmxt.o ## COMMON_POST_CONFIG_FRAG |