diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-04-25 18:11:35 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-04-26 22:39:55 -0400 |
commit | bd0918c910b7c4ee056d9c3413f8c680dff11584 (patch) | |
tree | af087569015bdab3a78c4445c5224c02e7fc1463 /sim/lm32 | |
parent | 66d055c75479e0c51745fc3b40faec6df7a01620 (diff) | |
download | gdb-bd0918c910b7c4ee056d9c3413f8c680dff11584.zip gdb-bd0918c910b7c4ee056d9c3413f8c680dff11584.tar.gz gdb-bd0918c910b7c4ee056d9c3413f8c680dff11584.tar.bz2 |
sim: nltvals: unify common syscall tables
Since libgloss provides a default syscall table for arches, use that
to provide the default syscall table for ports. Only the exceptions
need to be enumerated now with the common logic as the default.
Diffstat (limited to 'sim/lm32')
-rw-r--r-- | sim/lm32/ChangeLog | 4 | ||||
-rw-r--r-- | sim/lm32/Makefile.in | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/sim/lm32/ChangeLog b/sim/lm32/ChangeLog index 6a3287a..bc22fd7 100644 --- a/sim/lm32/ChangeLog +++ b/sim/lm32/ChangeLog @@ -1,3 +1,7 @@ +2021-04-26 Mike Frysinger <vapier@gentoo.org> + + * Makefile.in (NL_TARGET): Delete. + 2021-04-23 Mike Frysinger <vapier@gentoo.org> * configure.ac (SIM_AC_OPTION_HARDWARE): Delete first two args. diff --git a/sim/lm32/Makefile.in b/sim/lm32/Makefile.in index 51e6269..31c3940 100644 --- a/sim/lm32/Makefile.in +++ b/sim/lm32/Makefile.in @@ -22,9 +22,6 @@ SIM_EXTRA_DEPS = $(CGEN_INCLUDE_DEPS) $(srcdir)/../../opcodes/lm32-desc.h \ SIM_EXTRA_CLEAN = lm32-clean -# This selects the lm32 newlib/libgloss syscall definitions. -NL_TARGET = -DNL_TARGET_lm32 - ## COMMON_POST_CONFIG_FRAG arch = lm32 |