aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tlink.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4c6ee6a..c64d259 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-14 Steve Ellcey <sje@cup.hp.com>
+
+ * tlink.c (scan_linker_output): Check string for unsatisfied in
+ addition to undefined and unresolved.
+
2001-08-14 Graham Stott <grahams@redhat.com>
* libgcc2.c (*): Replace EH_FRAME_SECTION with
diff --git a/gcc/tlink.c b/gcc/tlink.c
index 606707d..783e4f1 100644
--- a/gcc/tlink.c
+++ b/gcc/tlink.c
@@ -671,6 +671,7 @@ scan_linker_output (fname)
mistakenly use GNU ld's "In function `foo':" message. */
if (q && (strstr (oldq, "ndefined")
|| strstr (oldq, "nresolved")
+ || strstr (oldq, "nsatisfied")
|| strstr (oldq, "ultiple")))
{
*q = 0;