diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-31 01:13:12 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-04-01 01:22:44 -0400 |
commit | 0fe84f3fbe9a740c38a8dbaa0150b8e4c25c69dd (patch) | |
tree | c52807092eb6da88708bb229b3110cfaf5c06faf /sim/arm | |
parent | aadc9410ba24ecf777fcc515afda69ef94d74248 (diff) | |
download | binutils-0fe84f3fbe9a740c38a8dbaa0150b8e4c25c69dd.zip binutils-0fe84f3fbe9a740c38a8dbaa0150b8e4c25c69dd.tar.gz binutils-0fe84f3fbe9a740c38a8dbaa0150b8e4c25c69dd.tar.bz2 |
sim: run: punt!
Now that all targets have been converted to nrun, we can finally punt
this old inconsistent interface.
A few stray references to the old run were sprinkled about; clean them
up in the process.
We leave behind the run(1) man page mostly so that we get it updated for
the new nrun interface.
Diffstat (limited to 'sim/arm')
-rw-r--r-- | sim/arm/ChangeLog | 6 | ||||
-rw-r--r-- | sim/arm/Makefile.in | 26 | ||||
-rw-r--r-- | sim/arm/tconfig.h | 17 |
3 files changed, 7 insertions, 42 deletions
diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog index d2705de..1cd5df6 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,9 @@ +2015-04-01 Mike Frysinger <vapier@gentoo.org> + + * Makefile.in (armos.o, armcopro.o, maverick.o, iwmmxt.o, arminit.o, + armrdi.o, armsupp.o, thumbemu.o, bag.o, wrapper.o): Delete rules. + * tconfig.h: Delete file. + 2015-03-31 Mike Frysinger <vapier@gentoo.org> * config.in, configure: Regenerate. diff --git a/sim/arm/Makefile.in b/sim/arm/Makefile.in index 241911b..aad18fb 100644 --- a/sim/arm/Makefile.in +++ b/sim/arm/Makefile.in @@ -30,32 +30,8 @@ SIM_OBJS = \ ## COMMON_POST_CONFIG_FRAG - -armos.o: armos.c armdefs.h armos.h armfpe.h targ-vals.h - -armcopro.o: armcopro.c armdefs.h -maverick.o: maverick.c armdefs.h -iwmmxt.o: iwmmxt.c iwmmxt.h armdefs.h - -armemu26.o: armemu.c armdefs.h armemu.h +armemu26.o: armemu.c armdefs.h armemu.h $(CC) -c $(srcdir)/armemu.c -o armemu26.o $(ALL_CFLAGS) armemu32.o: armemu.c armdefs.h armemu.h $(CC) -c $(srcdir)/armemu.c -o armemu32.o -DMODE32 $(ALL_CFLAGS) - -arminit.o: arminit.c armdefs.h armemu.h - -armrdi.o: armrdi.c armdefs.h armemu.h armos.h dbg_cp.h dbg_conf.h dbg_rdi.h \ - dbg_hif.h communicate.h - -armsupp.o: armsupp.c armdefs.h armemu.h - -thumbemu.o: thumbemu.c armdefs.h armemu.h - -bag.o: bag.c bag.h - -wrapper.o: armdefs.h armemu.h dbg_rdi.h \ - $(srcdir)/../common/run-sim.h \ - $(srcdir)/../common/sim-utils.h \ - $(srcdir)/../../include/gdb/sim-arm.h \ - $(srcdir)/../../include/gdb/remote-sim.h diff --git a/sim/arm/tconfig.h b/sim/arm/tconfig.h deleted file mode 100644 index 04f702d..0000000 --- a/sim/arm/tconfig.h +++ /dev/null @@ -1,17 +0,0 @@ -/* ARM target configuration file. */ - -/* Define this if the simulator supports profiling. - See the mips simulator for an example. - This enables the `-p foo' and `-s bar' options. - The target is required to provide sim_set_profile{,_size}. */ -/* #define SIM_HAVE_PROFILE */ - -/* Define this if the simulator uses an instruction cache. - See the h8/300 simulator for an example. - This enables the `-c size' option to set the size of the cache. - The target is required to provide sim_set_simcache_size. */ -/* #define SIM_HAVE_SIMCACHE */ - -/* Define this if the target cpu is bi-endian - and the simulator supports it. */ -#define SIM_HAVE_BIENDIAN |