aboutsummaryrefslogtreecommitdiff
path: root/ld
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 /ld
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 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/configure.host2
2 files changed, 7 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 96e420a..ae0be07 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+Sun Feb 18 15:05:17 1996 Ian Lance Taylor <ian@cygnus.com>
+
+ * configure.host: Check for 'do not mix' from native linker before
+ trying to use -rpath.
+
Thu Feb 15 13:58:06 1996 Ian Lance Taylor <ian@cygnus.com>
* configure.in: Remove explicit substitution of CFLAGS; autoconf
diff --git a/ld/configure.host b/ld/configure.host
index 2e74df7..a05f20b 100644
--- a/ld/configure.host
+++ b/ld/configure.host
@@ -162,6 +162,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 test "${shared}" = "true"; then
HLDFLAGS='-Wl,-rpath=$(libdir)'
else