Commit 60828cbd by Marc Espie Committed by Marc Espie

collect2.c (main): Explicitly parse -dynamic-linker option.

2005-01-15  Marc Espie  <espie@openbsd.org>

	* collect2.c (main): Explicitly parse -dynamic-linker option.

okay Mark Mitchell

From-SVN: r93693
parent 75b9aa9f
2005-01-15 Marc Espie <espie@openbsd.org>
* collect2.c (main): Explicitly parse -dynamic-linker option.
2005-01-15 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/19060
......
......@@ -1099,6 +1099,11 @@ main (int argc, char **argv)
ld1--;
ld2--;
}
if (!strcmp (arg, "-dynamic-linker") && argv[1])
{
++argv;
*ld1++ = *ld2++ = *argv;
}
break;
case 'l':
......
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