Commit 973a43f6 by Mike Stump Committed by Mike Stump

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
parent a27b2b71
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>
......
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment