aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorIain Sandoe <iains@gcc.gnu.org>2010-04-07 10:40:06 +0000
committerIain Sandoe <iains@gcc.gnu.org>2010-04-07 10:40:06 +0000
commit6392bea6024d79cc95344b1ed8c1d70a0e669fa0 (patch)
treebb210b59749de5151ab9af16eb389463943dd3fe /gcc/gcc.c
parent9d151aff9528cc568ac7f6a9410ea92d81802701 (diff)
downloadgcc-6392bea6024d79cc95344b1ed8c1d70a0e669fa0.zip
gcc-6392bea6024d79cc95344b1ed8c1d70a0e669fa0.tar.gz
gcc-6392bea6024d79cc95344b1ed8c1d70a0e669fa0.tar.bz2
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
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 31e4ab3..9ca2451 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -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
{