diff options
author | Kelley Cook <kcook@gcc.gnu.org> | 2004-10-05 11:56:00 +0000 |
---|---|---|
committer | R. Kelley Cook <kcook@gcc.gnu.org> | 2004-10-05 11:56:00 +0000 |
commit | 406176bedc8a0b67d7625ae4c8f896d22ef15fcf (patch) | |
tree | 82d06fb4d4ef5db19190010009f9f2aed4ef4eed /gcc | |
parent | 575665ff649eb2aac87bad3904b795c988077f30 (diff) | |
download | gcc-406176bedc8a0b67d7625ae4c8f896d22ef15fcf.zip gcc-406176bedc8a0b67d7625ae4c8f896d22ef15fcf.tar.gz gcc-406176bedc8a0b67d7625ae4c8f896d22ef15fcf.tar.bz2 |
Makefile.in: Update -Wno-error exceptions for move to build dir.
2004-10-05 Kelley Cook <kcook@gcc.gnu.org>
* Makefile.in: Update -Wno-error exceptions for move to build dir.
From-SVN: r88550
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0c6c928..5ee903f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-10-05 Kelley Cook <kcook@gcc.gnu.org> + + * Makefile.in: Update -Wno-error exceptions for move to build dir. + 2004-10-05 Chao-Ying Fu <fu@mips.com> Richard Sandiford <rsandifo@redhat.com> diff --git a/gcc/Makefile.in b/gcc/Makefile.in index ec4af54..7bff6d5 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -188,12 +188,12 @@ GCC_WARN_CFLAGS = $(LOOSE_WARN) $($(@D)-warn) $(NOCOMMON_FLAG) $($@-warn) # These files are to have -Werror bypassed in stage2: # These are very hard to completely clean due to target complexities. gcc.o-warn = -Wno-error -insn-conditions.o-warn = -Wno-error +build/insn-conditions.o-warn = -Wno-error # Bison-1.75 output often yields (harmless) -Wtraditional warnings -gengtype-yacc.o-warn = -Wno-error +build/gengtype-yacc.o-warn = -Wno-error c-parse.o-warn = -Wno-error # flex output may yield harmless "no previous prototype" warnings -gengtype-lex.o-warn = -Wno-error +build/gengtype-lex.o-warn = -Wno-error # SYSCALLS.c misses prototypes SYSCALLS.c.X-warn = -Wno-strict-prototypes -Wno-error # These files need -Wno-error because the gimplifier triggers hard to fix |