mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
a27b2b71a8
commit
973a43f6e6
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue