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:
authorCampbell Barton <ideasman42@gmail.com>2011-02-25 19:19:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-25 19:19:50 +0300
commitbc15e0e2952bac0458ae61c97d4d8187e55cd1cc (patch)
treef8bd0ad1e724d8a867caadff7778c484047a0d51 /build_files/scons/config/aix4-config.py
parentb25db7c8cb3bf41e19b99c0d3c83b27bfa8d23d6 (diff)
add NDEBUG to scons release flags + some pep8 cleanup for examples.
Diffstat (limited to 'build_files/scons/config/aix4-config.py')
-rw-r--r--build_files/scons/config/aix4-config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/scons/config/aix4-config.py b/build_files/scons/config/aix4-config.py
index 2e9a1dc0bf3..c3c28d27e6e 100644
--- a/build_files/scons/config/aix4-config.py
+++ b/build_files/scons/config/aix4-config.py
@@ -165,8 +165,8 @@ CCFLAGS = [ '-pipe', '-funsigned-char', '-fno-strict-aliasing' ]
CPPFLAGS = [ '-DXP_UNIX', '-DWIN32', '-DFREE_WINDOWS' ]
CXXFLAGS = ['-pipe', '-funsigned-char', '-fno-strict-aliasing' ]
-REL_CFLAGS = [ '-O2' ]
-REL_CCFLAGS = [ '-O2' ]
+REL_CFLAGS = ['-DNDEBUG', '-O2' ]
+REL_CCFLAGS = ['-DNDEBUG', '-O2' ]
C_WARN = [ '-Wall' , '-Wno-char-subscripts', '-Wdeclaration-after-statement' ]
CC_WARN = [ '-Wall' ]