aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1996-02-18 20:06:40 +0000
committerIan Lance Taylor <ian@airs.com>1996-02-18 20:06:40 +0000
commit9e2ef09802236b555b4de1d706e2e8cce095b885 (patch)
tree5c29a478194f5effa7c62f18e830dd4422996e61 /bfd
parent1d6afd7fc112d25b4cecfd434c0422fddd3225f8 (diff)
downloadgdb-9e2ef09802236b555b4de1d706e2e8cce095b885.zip
gdb-9e2ef09802236b555b4de1d706e2e8cce095b885.tar.gz
gdb-9e2ef09802236b555b4de1d706e2e8cce095b885.tar.bz2
* configure.host: Check for 'do not mix' from native linker before
trying to use -rpath.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/configure.host2
2 files changed, 7 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index d059edd..b9e39cc 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+Sun Feb 18 15:02:25 1996 Ian Lance Taylor <ian@cygnus.com>
+
+ * configure.host: Check for 'do not mix' from native linker before
+ trying to use -rpath.
+
Fri Feb 16 12:46:18 1996 Ian Lance Taylor <ian@cygnus.com>
* bfd.c (_bfd_get_gp_value): New function.
diff --git a/bfd/configure.host b/bfd/configure.host
index a7150c5..320faa4 100644
--- a/bfd/configure.host
+++ b/bfd/configure.host
@@ -113,6 +113,8 @@ case "${host}" in
:
elif grep 'No such file' conftest.t >/dev/null 2>&1; then
:
+ elif grep 'do not mix' conftest.t >/dev/null 2>&1; then
+ :
elif [ "${shared}" = "true" ]; then
HLDFLAGS='-Wl,-rpath=$(libdir)'
else