From: Steve Ellcey Date: Tue, 14 Aug 2001 15:01:48 +0000 (+0000) Subject: tlink.c (scan_linker_output): Check string for unsatisfied in addition to undefined... X-Git-Tag: prereleases/libstdc++-3.0.95~2655 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb20f668364dfc3394a8eacda1f9430d6fa7aad4;p=thirdparty%2Fgcc.git tlink.c (scan_linker_output): Check string for unsatisfied in addition to undefined and unresolved. * tlink.c (scan_linker_output): Check string for unsatisfied in addition to undefined and unresolved. From-SVN: r44892 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4c6ee6a212f8..c64d2592b3c4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-14 Steve Ellcey + + * tlink.c (scan_linker_output): Check string for unsatisfied in + addition to undefined and unresolved. + 2001-08-14 Graham Stott * libgcc2.c (*): Replace EH_FRAME_SECTION with diff --git a/gcc/tlink.c b/gcc/tlink.c index 606707dd28f9..783e4f11dcc3 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;