diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-08-08 14:13:46 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-08-08 14:16:02 -0700 |
commit | fe22cbc418b35ed6ea3252a204bd351f8c201e0b (patch) | |
tree | 1a2756d6a7db83342f9a907d084b5a3be503076b /ld/configure.ac | |
parent | 24d3e51bf0612c6cf5e9a824b982e7ed38e741c8 (diff) | |
download | gdb-fe22cbc418b35ed6ea3252a204bd351f8c201e0b.zip gdb-fe22cbc418b35ed6ea3252a204bd351f8c201e0b.tar.gz gdb-fe22cbc418b35ed6ea3252a204bd351f8c201e0b.tar.bz2 |
ld: Replace --rpath with -Wl,--rpath
"--rpath ../bfd/.libs ../bfd/.libs/libbfd.so" isn't a valid compiler
command-line option. We should use -Wl,--rpath instead of --rpath.
PR ld/21923
* configure.ac (TESTBFDLIB): Replace --rpath with -Wl,--rpath
for --disable-static.
* configure: Regenerated.
Diffstat (limited to 'ld/configure.ac')
-rw-r--r-- | ld/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/configure.ac b/ld/configure.ac index 99d127b..9bada13 100644 --- a/ld/configure.ac +++ b/ld/configure.ac @@ -470,7 +470,7 @@ EMULATION_LIBPATH=$all_libpath AC_SUBST(EMULATION_LIBPATH) if test x${enable_static} = xno; then - TESTBFDLIB="--rpath ../bfd/.libs ../bfd/.libs/libbfd.so" + TESTBFDLIB="-Wl,--rpath ../bfd/.libs ../bfd/.libs/libbfd.so" else TESTBFDLIB="../bfd/.libs/libbfd.a" fi |