Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Swaney <sswaney@centurytel.net>2007-04-12 22:20:00 +0400
committerStephen Swaney <sswaney@centurytel.net>2007-04-12 22:20:00 +0400
commit5ca191027620e4802ff540424a60486c4742812a (patch)
treefec9d142011cacb3b860aa0094e0fc4f25ccc1d7 /config/linuxcross-config.py
parent4b9bb648979d80690f36d7195af88562d1efa0f6 (diff)
add -Wdeclaration-after-statement to warning flags for gcc
Diffstat (limited to 'config/linuxcross-config.py')
-rw-r--r--config/linuxcross-config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/linuxcross-config.py b/config/linuxcross-config.py
index f372e5d886e..1c2288a8430 100644
--- a/config/linuxcross-config.py
+++ b/config/linuxcross-config.py
@@ -123,7 +123,7 @@ CPPFLAGS = [ '-DXP_UNIX', '-DWIN32', '-DFREE_WINDOWS' ]
CXXFLAGS = ['-pipe', '-mwindows', '-funsigned-char', '-fno-strict-aliasing' ]
REL_CFLAGS = [ '-O2' ]
REL_CCFLAGS = [ '-O2' ]
-C_WARN = [ '-Wall' , '-Wno-char-subscripts' ]
+C_WARN = [ '-Wall' , '-Wno-char-subscripts', '-Wdeclaration-after-statement' ]
CC_WARN = [ '-Wall' ]