diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-01-12 04:06:18 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-01-12 04:13:13 -0500 |
commit | 5e9e2f41ebaa79d983133bb1374423815adb2f58 (patch) | |
tree | e4dbb82baea6c28337f42ec4ec8fe5d90541abe6 /sim/or1k | |
parent | 68895f7d7e17c0fc407b7aedf74e65e5c793388c (diff) | |
download | gdb-5e9e2f41ebaa79d983133bb1374423815adb2f58.zip gdb-5e9e2f41ebaa79d983133bb1374423815adb2f58.tar.gz gdb-5e9e2f41ebaa79d983133bb1374423815adb2f58.tar.bz2 |
sim: or1k: clean up stale build entries
This logic was migrated to the common code long ago so ports don't
need to declare them themselves.
Diffstat (limited to 'sim/or1k')
-rw-r--r-- | sim/or1k/ChangeLog | 7 | ||||
-rw-r--r-- | sim/or1k/Makefile.in | 12 |
2 files changed, 8 insertions, 11 deletions
diff --git a/sim/or1k/ChangeLog b/sim/or1k/ChangeLog index d305cb3..e25c563 100644 --- a/sim/or1k/ChangeLog +++ b/sim/or1k/ChangeLog @@ -1,5 +1,12 @@ 2021-01-12 Mike Frysinger <vapier@gentoo.org> + * Makefile.in (SIM_OBJS): Delete redundant sim-cpu.o, sim-hload.o, + sim-hrw.o, sim-reg.o, sim-reason.o, sim-engine.o, sim-model.o, + sim-stop.o, and $(TRAPS_OBJ) entries. + (SIM_RUN_OBJS): Delete. + +2021-01-12 Mike Frysinger <vapier@gentoo.org> + * configure.ac (SIM_AC_OPTION_INLINE): Delete call. * configure: Regenerate. diff --git a/sim/or1k/Makefile.in b/sim/or1k/Makefile.in index e0b5605..2462560 100644 --- a/sim/or1k/Makefile.in +++ b/sim/or1k/Makefile.in @@ -31,21 +31,12 @@ OR1K_OBJS = \ SIM_OBJS = \ $(SIM_NEW_COMMON_OBJS) \ - sim-cpu.o \ - sim-hload.o \ - sim-hrw.o \ - sim-reg.o \ cgen-utils.o \ cgen-trace.o \ cgen-scache.o \ cgen-run.o \ cgen-fpu.o \ - cgen-accfp.o \ - sim-reason.o \ - sim-engine.o \ - sim-model.o \ - sim-stop.o \ - $(TRAPS_OBJ) + cgen-accfp.o SIM_OBJS += $(OR1K_OBJS) @@ -62,7 +53,6 @@ SIM_EXTRA_CFLAGS = SIM_EXTRA_LIBS = -lm -SIM_RUN_OBJS = nrun.o SIM_EXTRA_CLEAN = or1k-clean ## COMMON_POST_CONFIG_FRAG |