diff options
author | iains <iains@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-04-07 10:40:06 +0000 |
---|---|---|
committer | iains <iains@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-04-07 10:40:06 +0000 |
commit | 72b890e7cbdbf9c35090e08769a31b7ef04e55f2 (patch) | |
tree | bb210b59749de5151ab9af16eb389463943dd3fe /gcc/gcc.c | |
parent | 6f5b6a64f53c4ced6e8ec092897d7956dbda018a (diff) | |
download | gcc-72b890e7cbdbf9c35090e08769a31b7ef04e55f2.tar.gz |
2010-04-07 Iain Sandoe <iains@gcc.gnu.org>
PR driver/41594
* gcc.c: Add -static-libstdc++ to list of recognized options.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@158052 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c index 31e4ab37513..9ca245170c2 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 { |