diff options
author | Gabriel Dos Reis <gdr@integrable-solutions.net> | 2003-03-30 20:31:51 +0000 |
---|---|---|
committer | Gabriel Dos Reis <gdr@gcc.gnu.org> | 2003-03-30 20:31:51 +0000 |
commit | 78e68f88a5c0103a8cc46589968df72fad272d3b (patch) | |
tree | 19e1c9b443b12d927bc133a2477f9ad95f47dae1 | |
parent | 7c71dc2b0d6268b58a06bf6c09d5420b13e70992 (diff) | |
download | gcc-78e68f88a5c0103a8cc46589968df72fad272d3b.zip gcc-78e68f88a5c0103a8cc46589968df72fad272d3b.tar.gz gcc-78e68f88a5c0103a8cc46589968df72fad272d3b.tar.bz2 |
Makefile.in (STRICT_WARN): Don't warn for ISO C constructs.
* Makefile.in (STRICT_WARN): Don't warn for ISO C constructs.
(STRICT2_WARN): Likewise.
From-SVN: r65052
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7a1e510..4599a07 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-03-30 Gabriel Dos Reis <gdr@integrable-solutions.net> + + * Makefile.in (STRICT_WARN): Don't warn for ISO C constructs. + (STRICT2_WARN): Likewise. + 2003-03-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> PR other/6955 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 64491f9..b72040e 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -141,8 +141,8 @@ coverageexts = .{da,bbg} # 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 -STRICT_WARN = -Wtraditional @strict1_warn@ -STRICT2_WARN = -Wtraditional -pedantic -Wno-long-long @WERROR@ +STRICT_WARN = @strict1_warn@ +STRICT2_WARN = -pedantic -Wno-long-long @WERROR@ # This is set by --enable-checking. The idea is to catch forgotten # "extern" tags in header files. |