diff options
author | Pedro Alves <palves@redhat.com> | 2010-08-26 18:03:02 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-08-26 18:03:02 +0000 |
commit | d4596a3d7917d78d17cffc5cd2e7d47c8bf9a383 (patch) | |
tree | a9e059bb0cfb95586851e90da85806702d6d1828 /gdb/gdbserver/Makefile.in | |
parent | c6da4ceffb316a29a735c7b4d3e8b9cc6831f4d4 (diff) | |
download | gdb-d4596a3d7917d78d17cffc5cd2e7d47c8bf9a383.zip gdb-d4596a3d7917d78d17cffc5cd2e7d47c8bf9a383.tar.gz gdb-d4596a3d7917d78d17cffc5cd2e7d47c8bf9a383.tar.bz2 |
* Makefile.in (WARN_CFLAGS): Get it from configure.
(WERROR_CFLAGS): New.
(INTERNAL_CFLAGS): Add WERROR_CFLAGS.
* configure.ac: Introduce --enable-werror, which adds -Werror to
the compiler command line. Enabled by default. Disable with
--disable-werror. Add -Wdeclaration-after-statement
Wpointer-arith and -Wformat-nonliteral to warning flags.
* configure: Regenerate.
Diffstat (limited to 'gdb/gdbserver/Makefile.in')
-rw-r--r-- | gdb/gdbserver/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index 467bfdf..e397bd7 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -86,14 +86,15 @@ INCLUDE_CFLAGS = -I. -I${srcdir} -I$(srcdir)/../common \ GLOBAL_CFLAGS = ${MT_CFLAGS} ${MH_CFLAGS} #PROFILE_CFLAGS = -pg -WARN_CFLAGS = -Wall +WARN_CFLAGS = @WARN_CFLAGS@ +WERROR_CFLAGS = @WERROR_CFLAGS@ # CFLAGS is specifically reserved for setting from the command line # when running make. I.E. "make CFLAGS=-Wmissing-prototypes". CFLAGS = @CFLAGS@ # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros. -INTERNAL_CFLAGS = $(WARN_CFLAGS) ${CFLAGS} ${GLOBAL_CFLAGS} \ +INTERNAL_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS) ${CFLAGS} ${GLOBAL_CFLAGS} \ ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS} # LDFLAGS is specifically reserved for setting from the command line |