diff options
author | Alan Modra <amodra@gmail.com> | 2009-09-07 10:54:25 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-09-07 10:54:25 +0000 |
commit | 2eee559322944130e16808a3049f60f80561f69a (patch) | |
tree | cc4ae4e078313a11ba03b9533922c110ee60d92d /opcodes/configure.in | |
parent | b11d79f2b289c401770bbb05c82fbd761e4657a4 (diff) | |
download | gdb-2eee559322944130e16808a3049f60f80561f69a.zip gdb-2eee559322944130e16808a3049f60f80561f69a.tar.gz gdb-2eee559322944130e16808a3049f60f80561f69a.tar.bz2 |
* configure.in (BUILD_LIBS, BUILD_LIB_DEPS): Define and subst.
* configure: Regenerate.
* Makefile.am (LIBIBERTY, BUILD_LIBIBERTY, BUILD_LIBINTL): Delete.
(BUILD_LIBS, BUILD_LIB_DEPS): Define. Use..
(i386-gen, ia64-gen, z8kgen): ..here.
* Makefile.in: Regenerate.
Diffstat (limited to 'opcodes/configure.in')
-rw-r--r-- | opcodes/configure.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/opcodes/configure.in b/opcodes/configure.in index c634470..75414d7 100644 --- a/opcodes/configure.in +++ b/opcodes/configure.in @@ -101,6 +101,22 @@ AC_CACHE_CHECK(linker --as-needed support, bfd_cv_ld_as_needed, LT_LIB_M +#Libs for generator progs +if test "x$cross_compiling" = "xno"; then + BUILD_LIBS=../libiberty/libiberty.a + BUILD_LIB_DEPS=$BUILD_LIBS +else + # if cross-compiling, assume that the system provides -liberty + # and that the version is compatible with new headers. + BUILD_LIBS=-liberty + BUILD_LIB_DEPS= +fi +BUILD_LIBS="$BUILD_LIBS $LIBINTL" +BUILD_LIB_DEPS="$BUILD_LIB_DEPS $LIBINTL_DEP" + +AC_SUBST(BUILD_LIBS) +AC_SUBST(BUILD_LIB_DEPS) + # Horrible hacks to build DLLs on Windows and a shared library elsewhere. SHARED_LDFLAGS= SHARED_LIBADD= |