diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-03-31 00:39:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-03-31 00:39:35 +0000 |
commit | 73e76d20031e4c59fa47e9c0dca449f8351a3657 (patch) | |
tree | bf28326eb37d7fdc262c1bc88b6eeb5eed7b002b /sim/frv/Makefile.in | |
parent | 37cf6fc12167035748c548a6258d2e5de85e7980 (diff) | |
download | gdb-73e76d20031e4c59fa47e9c0dca449f8351a3657.zip gdb-73e76d20031e4c59fa47e9c0dca449f8351a3657.tar.gz gdb-73e76d20031e4c59fa47e9c0dca449f8351a3657.tar.bz2 |
sim: frv/m32r: back out hard failure when dv-sockser is not available
These sims have optional support for the dv-sockser model, so do not make
them hard failures. The Makefile made it seem like they didn't actually
support things dynamically, but a further code dive into the source and
the Makefile shows that things work out.
Diffstat (limited to 'sim/frv/Makefile.in')
-rw-r--r-- | sim/frv/Makefile.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sim/frv/Makefile.in b/sim/frv/Makefile.in index 8960319..a0a17e8 100644 --- a/sim/frv/Makefile.in +++ b/sim/frv/Makefile.in @@ -19,9 +19,6 @@ FRV_OBJS = frv.o cpu.o decode.o sem.o model.o mloop.o cgen-par.o -CONFIG_DEVICES = dv-sockser.o -CONFIG_DEVICES = - SIM_OBJS = \ $(SIM_NEW_COMMON_OBJS) \ sim-cpu.o \ @@ -36,7 +33,7 @@ SIM_OBJS = \ traps.o interrupts.o memory.o cache.o pipeline.o \ profile.o profile-fr400.o profile-fr450.o profile-fr500.o profile-fr550.o options.o \ devices.o reset.o registers.o \ - $(CONFIG_DEVICES) + $(frv_extra_objs) # Extra headers included by sim-main.h. SIM_EXTRA_DEPS = \ |