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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-11-28 20:19:45 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-11-28 20:19:45 +0400
commit33f451838aa3a4527f41dc5932c511bc8d1987f8 (patch)
tree61e5b64e1c72f436135d5436ad313cd95f468e3b /build_files/buildbot/config/user-config-player-glibc211-i686.py
parentf828a318f5f77e4e167b2c4d5efd45460b239288 (diff)
For sure buildbot's release buildflags should include -DNDEBUG,
otherwise asserts will abort execution for release builds.
Diffstat (limited to 'build_files/buildbot/config/user-config-player-glibc211-i686.py')
-rw-r--r--build_files/buildbot/config/user-config-player-glibc211-i686.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/buildbot/config/user-config-player-glibc211-i686.py b/build_files/buildbot/config/user-config-player-glibc211-i686.py
index 00bfdbb16f2..96f201235c4 100644
--- a/build_files/buildbot/config/user-config-player-glibc211-i686.py
+++ b/build_files/buildbot/config/user-config-player-glibc211-i686.py
@@ -117,5 +117,5 @@ WITH_BF_OCEANSIM = True
# Compilation and optimization
BF_DEBUG = False
-REL_CCFLAGS = ['-O2', '-msse', '-msse2'] # C & C++
+REL_CCFLAGS = ['-DNDEBUG', '-O2', '-msse', '-msse2'] # C & C++
PLATFORM_LINKFLAGS = ['-lrt']