diff options
author | Nick Clifton <nickc@redhat.com> | 2008-10-22 14:45:34 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2008-10-22 14:45:34 +0000 |
commit | bfd04c44d73948294ce4c341ee837769743a85ae (patch) | |
tree | 05e7a7e4502bb8122e68888228fab2b068182720 /opcodes/configure | |
parent | 788b132a23f48f632268f9134fb773ec75182522 (diff) | |
download | gdb-bfd04c44d73948294ce4c341ee837769743a85ae.tar.gz |
PR 6937
* configure.in (SHARED_LIBADD): Revert previous change.
Add a comment explaining why.
(SHARED_DEPENDENCIES): Revert previous change.
* configure: Regenerate.
Diffstat (limited to 'opcodes/configure')
-rwxr-xr-x | opcodes/configure | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/opcodes/configure b/opcodes/configure index 33c246b22c8..90291a9423c 100755 --- a/opcodes/configure +++ b/opcodes/configure @@ -12436,10 +12436,14 @@ if test "$enable_shared" = "yes"; then SHARED_LIBADD="-Wl,`pwd`/../bfd/.libs/libbfd.sl" ;; *) - SHARED_LIBADD="-Wl,`pwd`/../bfd/.libs/libbfd.so -Wl,`pwd`/../libiberty/libiberty.a" + # It is tempting to include libiberty here as well, but + # that library is only built as a static version. + # Including it here would insert text relocations into + # the opcodes library, which is undesirable. + SHARED_LIBADD="-Wl,`pwd`/../bfd/.libs/libbfd.so" ;; esac - SHARED_DEPENDENCIES="../bfd/libbfd.la ../libiberty/libiberty.a" + SHARED_DEPENDENCIES="../bfd/libbfd.la" ;; esac fi |