From: Tom Hughes Date: Wed, 12 Oct 2005 10:32:08 +0000 (+0000) Subject: Add -Wdeclaration-after-statement to the compiler flags so we can X-Git-Tag: svn/VALGRIND_3_1_0~327 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7a4bfb6144af7153073d29a56477ba1b97679bb;p=thirdparty%2Fvalgrind.git Add -Wdeclaration-after-statement to the compiler flags so we can catch code that will fail on older compilers. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4905 --- diff --git a/Makefile.core.am b/Makefile.core.am index 1859e0c59c..257b3b0706 100644 --- a/Makefile.core.am +++ b/Makefile.core.am @@ -9,7 +9,7 @@ add_includes = -I$(top_srcdir)/coregrind \ -DVGO_$(VG_OS)=1 \ -DVGP_$(VG_ARCH)_$(VG_OS)=1 -BASE_AM_CFLAGS = @ARCH_CORE_AM_CFLAGS@ -Wmissing-prototypes -Winline -Wall -Wshadow -O -g +BASE_AM_CFLAGS = @ARCH_CORE_AM_CFLAGS@ -Wmissing-prototypes -Wdeclaration-after-statement -Winline -Wall -Wshadow -O -g PIC_AM_CFLAGS = $(BASE_AM_CFLAGS) -fpic -fno-omit-frame-pointer diff --git a/Makefile.tool-flags.am b/Makefile.tool-flags.am index 7e1517e2c4..c56892f118 100644 --- a/Makefile.tool-flags.am +++ b/Makefile.tool-flags.am @@ -5,6 +5,6 @@ add_includes = -I$(top_srcdir)/include \ -DVGP_$(VG_ARCH)_$(VG_OS)=1 AM_CPPFLAGS = $(add_includes) -AM_CFLAGS = $(WERROR) -Wmissing-prototypes -Winline -Wall -Wshadow -O -g @ARCH_TOOL_AM_CFLAGS@ +AM_CFLAGS = $(WERROR) -Wmissing-prototypes -Wdeclaration-after-statement -Winline -Wall -Wshadow -O -g @ARCH_TOOL_AM_CFLAGS@ AM_CCASFLAGS = $(add_includes)