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/cris | |
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/cris')
-rw-r--r-- | sim/cris/ChangeLog | 4 | ||||
-rw-r--r-- | sim/cris/Makefile.in | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/sim/cris/ChangeLog b/sim/cris/ChangeLog index 191768d..4f0d2e3 100644 --- a/sim/cris/ChangeLog +++ b/sim/cris/ChangeLog @@ -1,3 +1,7 @@ +2021-04-26 Mike Frysinger <vapier@gentoo.org> + + * Makefile.in (NL_TARGET): Delete. + 2021-04-25 Tom Tromey <tom@tromey.com> * Makefile.in (SIM_EXTRA_DEPS): Add engv32.h. diff --git a/sim/cris/Makefile.in b/sim/cris/Makefile.in index 48a379d..3dcdbb2 100644 --- a/sim/cris/Makefile.in +++ b/sim/cris/Makefile.in @@ -40,9 +40,6 @@ SIM_EXTRA_DEPS = \ SIM_EXTRA_CLEAN = cris-clean -# This selects the cris newlib/libgloss syscall definitions. -NL_TARGET = -DNL_TARGET_cris - ## COMMON_POST_CONFIG_FRAG arch = cris |