diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-05-16 20:33:00 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-05-16 20:33:00 (GMT) |
commit | 43b2ab96bc63f037bd7e1504241c2feaef684fc6 (patch) | |
tree | e721ad430f5d82563728c9d63cb8e9e808d81da6 /configure | |
parent | aa96588399da6b77767e5a6df675a035e3f72da6 (diff) | |
download | cpython-43b2ab96bc63f037bd7e1504241c2feaef684fc6.zip cpython-43b2ab96bc63f037bd7e1504241c2feaef684fc6.tar.gz cpython-43b2ab96bc63f037bd7e1504241c2feaef684fc6.tar.bz2 |
make GCC complain about declarations not at the top of blocks
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6264,6 +6264,8 @@ UNIVERSAL_ARCH_FLAGS= # tweak BASECFLAGS based on compiler and platform case $GCC in yes) + BASECFLAGS="$BASECFLAGS -Werror=declaration-after-statement" + # Python doesn't violate C99 aliasing rules, but older versions of # GCC produce warnings for legal Python code. Enable # -fno-strict-aliasing on versions of GCC that support but produce |