re PR driver/41594 (-static-libstdc++ is not recognized as valid by the gcc driver.)

2010-04-07  Iain Sandoe  <iains@gcc.gnu.org>

	PR driver/41594
	* gcc.c: Add -static-libstdc++ to list of recognized options.

From-SVN: r158052
This commit is contained in:
Iain Sandoe 2010-04-07 10:40:06 +00:00
parent 9d151aff95
commit 6392bea602
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-04-07 Iain Sandoe <iains@gcc.gnu.org>
PR driver/41594
* gcc.c: Add -static-libstdc++ to list of recognized options.
2010-04-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config.gcc (i[34567]86-*-solaris2*): Default with_tune_32 to

View File

@ -4558,12 +4558,14 @@ process_command (int argc, const char **argv)
switches[n_switches].validated = 0;
switches[n_switches].ordering = 0;
/* These are always valid, since gcc.c itself understands the
first four and gfortranspec.c understands -static-libgfortran. */
first four, gfortranspec.c understands -static-libgfortran
and g++spec.c understands -static-libstdc++ */
if (!strcmp (p, "save-temps")
|| !strcmp (p, "static-libgcc")
|| !strcmp (p, "shared-libgcc")
|| !strcmp (p, "pipe")
|| !strcmp (p, "static-libgfortran"))
|| !strcmp (p, "static-libgfortran")
|| !strcmp (p, "static-libstdc++"))
switches[n_switches].validated = 1;
else
{