diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-15 00:00:56 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-15 00:00:56 +0000 |
commit | e23fd334f5220ef3b579f2553bf2be34c966c469 (patch) | |
tree | 548fe551fcdee2dd685c51071004d4a7a0349345 /gcc/Makefile.in | |
parent | 3c556f04c64ac43ce21344ceb0d94165934b2b52 (diff) | |
download | ppe42-gcc-e23fd334f5220ef3b579f2553bf2be34c966c469.tar.gz ppe42-gcc-e23fd334f5220ef3b579f2553bf2be34c966c469.zip |
* Makefile.in (LOOSE_WARN): Add -fno-common.
* c-common.h (constant_string_class_name): Add missing extern.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56334 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 658fce34e2c..798426d11be 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -88,7 +88,7 @@ coverageexts = .{da,bb,bbg} # apply to the back end and the C front end, which may be compiled # with other compilers. This is partially controlled by configure in # stage1, as not all versions of gcc understand -Wno-long-long. -LOOSE_WARN = -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes +LOOSE_WARN = -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -fno-common STRICT_WARN = -Wtraditional @strict1_warn@ STRICT2_WARN = -Wtraditional -pedantic -Wno-long-long |