mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-04-12 14:33:06 +08:00
Fix sim build when configured with --enable-plugins
* common/Make-common.in: Use lt_cv_dlopen_libs under PLUGINS condition. * common/acinclude.m4: Define lt_cv_dlopen_libs. * arm/configure: Regenerate. * avr/configure: Regenerate. * bfin/configure: Regenerate. * common/configure: Regenerate. * cr16/configure: Regenerate. * cris/configure: Regenerate. * d10v/configure: Regenerate. * erc32/configure: Regenerate. * frv/configure: Regenerate. * h8300/configure: Regenerate. * igen/configure: Regenerate. * iq2000/configure: Regenerate. * lm32/configure: Regenerate. * m32c/configure: Regenerate. * m32r/configure: Regenerate. * m68hc11/configure: Regenerate. * mcore/configure: Regenerate. * microblaze/configure: Regenerate. * mips/configure: Regenerate. * mn10300/configure: Regenerate. * moxie/configure: Regenerate. * ppc/configure: Regenerate. * rl78/configure: Regenerate. * rx/configure: Regenerate. * sh/configure: Regenerate. * sh64/configure: Regenerate. * testsuite/configure: Regenerate. * v850/configure: Regenerate.
This commit is contained in:
parent
9b30cccca9
commit
6bb11ab3b2
@ -1,3 +1,37 @@
|
||||
2012-11-20 Pavel Chupin <pavel.v.chupin@intel.com>
|
||||
|
||||
* common/Make-common.in: Use lt_cv_dlopen_libs under PLUGINS
|
||||
condition.
|
||||
* common/acinclude.m4: Define lt_cv_dlopen_libs.
|
||||
* arm/configure: Regenerate.
|
||||
* avr/configure: Regenerate.
|
||||
* bfin/configure: Regenerate.
|
||||
* common/configure: Regenerate.
|
||||
* cr16/configure: Regenerate.
|
||||
* cris/configure: Regenerate.
|
||||
* d10v/configure: Regenerate.
|
||||
* erc32/configure: Regenerate.
|
||||
* frv/configure: Regenerate.
|
||||
* h8300/configure: Regenerate.
|
||||
* igen/configure: Regenerate.
|
||||
* iq2000/configure: Regenerate.
|
||||
* lm32/configure: Regenerate.
|
||||
* m32c/configure: Regenerate.
|
||||
* m32r/configure: Regenerate.
|
||||
* m68hc11/configure: Regenerate.
|
||||
* mcore/configure: Regenerate.
|
||||
* microblaze/configure: Regenerate.
|
||||
* mips/configure: Regenerate.
|
||||
* mn10300/configure: Regenerate.
|
||||
* moxie/configure: Regenerate.
|
||||
* ppc/configure: Regenerate.
|
||||
* rl78/configure: Regenerate.
|
||||
* rx/configure: Regenerate.
|
||||
* sh/configure: Regenerate.
|
||||
* sh64/configure: Regenerate.
|
||||
* testsuite/configure: Regenerate.
|
||||
* v850/configure: Regenerate.
|
||||
|
||||
2012-11-05 Stephane Carrez <Stephane.Carrez@gmail.com>
|
||||
|
||||
* MAINTAINERS: Update my email address.
|
||||
|
8961
sim/arm/configure
vendored
8961
sim/arm/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/avr/configure
vendored
8961
sim/avr/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/bfin/configure
vendored
8961
sim/bfin/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -58,6 +58,7 @@ man1dir = $(mandir)/man1
|
||||
infodir = @infodir@
|
||||
includedir = @includedir@
|
||||
|
||||
lt_cv_dlopen_libs = @lt_cv_dlopen_libs@
|
||||
# This can be referenced by the gettext configuration code.
|
||||
top_builddir = ..
|
||||
|
||||
@ -255,6 +256,7 @@ COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
|
||||
|
||||
LIBIBERTY_LIB = ../../libiberty/libiberty.a
|
||||
BFD_LIB = ../../bfd/libbfd.a
|
||||
@PLUGINS_TRUE@LIBDL = @lt_cv_dlopen_libs@
|
||||
OPCODES_LIB = ../../opcodes/libopcodes.a
|
||||
LIBINTL = @LIBINTL@
|
||||
LIBINTL_DEP = @LIBINTL_DEP@
|
||||
@ -262,7 +264,7 @@ CONFIG_LIBS = @LIBS@
|
||||
LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL_DEP) $(LIBIBERTY_LIB) \
|
||||
$(SIM_EXTRA_LIBDEPS)
|
||||
EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL) $(LIBIBERTY_LIB) \
|
||||
$(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
|
||||
$(CONFIG_LIBS) $(SIM_EXTRA_LIBS) $(LIBDL)
|
||||
|
||||
LIB_OBJS = callback.o syscall.o targ-map.o version.o $(SIM_OBJS)
|
||||
|
||||
|
@ -21,6 +21,12 @@
|
||||
# Include global overrides and fixes for Autoconf.
|
||||
m4_include(../../config/override.m4)
|
||||
sinclude([../../config/zlib.m4])
|
||||
m4_include([../../config/plugins.m4])
|
||||
m4_include([../../libtool.m4])
|
||||
m4_include([../../ltoptions.m4])
|
||||
m4_include([../../ltsugar.m4])
|
||||
m4_include([../../ltversion.m4])
|
||||
m4_include([../../lt~obsolete.m4])
|
||||
sinclude([../../config/depstand.m4])
|
||||
|
||||
AC_DEFUN([SIM_AC_COMMON],
|
||||
@ -90,6 +96,12 @@ AC_CHECK_LIB(nsl, gethostbyname)
|
||||
# using the same condition.
|
||||
AM_ZLIB
|
||||
|
||||
# BFD uses libdl when when plugins enabled.
|
||||
AC_PLUGINS
|
||||
AM_CONDITIONAL(PLUGINS, test "$plugins" = yes)
|
||||
LT_INIT([dlopen])
|
||||
AC_SUBST(lt_cv_dlopen_libs)
|
||||
|
||||
. ${srcdir}/../../bfd/configure.host
|
||||
|
||||
dnl Standard (and optional) simulator options.
|
||||
|
7428
sim/common/configure
vendored
7428
sim/common/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/cr16/configure
vendored
8961
sim/cr16/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/cris/configure
vendored
8961
sim/cris/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/d10v/configure
vendored
8961
sim/d10v/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/erc32/configure
vendored
8961
sim/erc32/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/frv/configure
vendored
8961
sim/frv/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/h8300/configure
vendored
8961
sim/h8300/configure
vendored
File diff suppressed because it is too large
Load Diff
1533
sim/igen/configure
vendored
1533
sim/igen/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/iq2000/configure
vendored
8961
sim/iq2000/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/lm32/configure
vendored
8961
sim/lm32/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/m32c/configure
vendored
8961
sim/m32c/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/m32r/configure
vendored
8961
sim/m32r/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/m68hc11/configure
vendored
8961
sim/m68hc11/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/mcore/configure
vendored
8961
sim/mcore/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/microblaze/configure
vendored
8961
sim/microblaze/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/mips/configure
vendored
8961
sim/mips/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/mn10300/configure
vendored
8961
sim/mn10300/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/moxie/configure
vendored
8961
sim/moxie/configure
vendored
File diff suppressed because it is too large
Load Diff
1533
sim/ppc/configure
vendored
1533
sim/ppc/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/rl78/configure
vendored
8961
sim/rl78/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/rx/configure
vendored
8961
sim/rx/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/sh/configure
vendored
8961
sim/sh/configure
vendored
File diff suppressed because it is too large
Load Diff
8961
sim/sh64/configure
vendored
8961
sim/sh64/configure
vendored
File diff suppressed because it is too large
Load Diff
2
sim/testsuite/configure
vendored
2
sim/testsuite/configure
vendored
@ -1907,7 +1907,7 @@ case "${target}" in
|
||||
sim_arch=sh
|
||||
sim_testsuite=yes
|
||||
;;
|
||||
sparc-*-rtems*|sparc-*-elf*|erc32*-*-*)
|
||||
sparc-*-rtems*|sparc-*-elf*)
|
||||
sim_arch=erc32
|
||||
sim_testsuite=yes
|
||||
;;
|
||||
|
8961
sim/v850/configure
vendored
8961
sim/v850/configure
vendored
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user