tlink.c (scan_linker_output): Add support for darwin linker...

* tlink.c (scan_linker_output): Add support for darwin linker, as it
        emits unresolved symbols one per line, consuming the entire line.

From-SVN: r67126
This commit is contained in:
Mike Stump 2003-05-23 18:23:13 +00:00 committed by Mike Stump
parent a27b2b71a8
commit 973a43f6e6
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-05-23 Mike Stump <mrs@apple.com>
* tlink.c (scan_linker_output): Add support for darwin linker, as it
emits unresolved symbols one per line, consuming the entire line.
2003-05-23 Larin Hennessy <larin@science.oregonstate.edu>
Zack Weinberg <zack@codesourcery.com>

View File

@ -632,6 +632,12 @@ scan_linker_output (fname)
/* Then try "double quotes". */
else if (p = strchr (oldq, '"'), p)
p++, q = strchr (p, '"');
else {
/* Then try entire line. */
q = strchr (oldq, 0);
if (q != oldq)
p = oldq;
}
if (p)
{