* 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
+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>
/* 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)
{