diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-11-03 03:08:53 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-11-03 15:14:55 -0400 |
commit | d54c09b99e6470e32d848a531f676734978a8951 (patch) | |
tree | 7cb7145ea6026ca16c9575f8a91027472ae59764 /sim/ppc/configure.ac | |
parent | a1700a3199d31910b87cd7db3c394ddd091cfcde (diff) | |
download | binutils-d54c09b99e6470e32d848a531f676734978a8951.zip binutils-d54c09b99e6470e32d848a531f676734978a8951.tar.gz binutils-d54c09b99e6470e32d848a531f676734978a8951.tar.bz2 |
sim: ppc: switch to common builds for callback objects
We don't need to build this anymore ourselves since the common build
includes it and produces the same object code. We also need to pull
in the split constant modules after the refactoring and pulling them
out of nltvals.def & targ-map.o. This doesn't matter for the sim
directly, but does for gdb and other users of libsim.
We also delete some conditional source tree logic since we already
require this be the "new" combined tree with a ../common/ dir. This
has been the case for decades at this point.
Diffstat (limited to 'sim/ppc/configure.ac')
-rw-r--r-- | sim/ppc/configure.ac | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/sim/ppc/configure.ac b/sim/ppc/configure.ac index b837c5b..8d5d78c 100644 --- a/sim/ppc/configure.ac +++ b/sim/ppc/configure.ac @@ -545,18 +545,6 @@ else sim_devzero="" fi -dnl Figure out if we are in the new Cygnus tree with a common directory or not -AC_MSG_CHECKING(for common simulator directory) -if test -f "${srcdir}/../common/callback.c"; then - AC_MSG_RESULT(yes) - sim_callback="callback.o targ-map.o" - sim_targ_vals="targ-vals.h targ-map.c targ-vals.def" -else - AC_MSG_RESULT(no) - sim_callback="" - sim_targ_vals="" -fi - AC_MSG_CHECKING(for common simulator directory fpu implementation) if test -f "${srcdir}/../common/sim-fpu.c"; then AC_MSG_RESULT(yes) @@ -624,8 +612,6 @@ AC_SUBST(sim_default_model) AC_SUBST(sim_model_issue) AC_SUBST(sim_termio) AC_SUBST(sim_devzero) -AC_SUBST(sim_callback) -AC_SUBST(sim_targ_vals) AC_SUBST(sim_fpu_cflags) AC_SUBST(sim_fpu) |