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/m32r/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/m32r/Makefile.in')
-rw-r--r-- | sim/m32r/Makefile.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sim/m32r/Makefile.in b/sim/m32r/Makefile.in index 89f1063..095ac9a 100644 --- a/sim/m32r/Makefile.in +++ b/sim/m32r/Makefile.in @@ -24,9 +24,6 @@ M32RX_OBJS = m32rx.o cpux.o decodex.o modelx.o mloopx.o M32R2_OBJS = m32r2.o cpu2.o decode2.o model2.o mloop2.o TRAPS_OBJ = @traps_obj@ -CONFIG_DEVICES = dv-sockser.o -CONFIG_DEVICES = - SIM_OBJS = \ $(SIM_NEW_COMMON_OBJS) \ sim-cpu.o \ @@ -42,7 +39,7 @@ SIM_OBJS = \ $(M32R2_OBJS) \ $(TRAPS_OBJ) \ devices.o \ - $(CONFIG_DEVICES) + $(m32r_extra_objs) # Extra headers included by sim-main.h. SIM_EXTRA_DEPS = \ |