For sure buildbot's release buildflags should include -DNDEBUG,

otherwise asserts will abort execution for release builds.
This commit is contained in:
Sergey Sharybin
2012-11-28 16:19:45 +00:00
parent f828a318f5
commit 33f451838a
8 changed files with 8 additions and 8 deletions

View File

@@ -160,6 +160,6 @@ 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']
BF_PROGRAM_LINKFLAGS = ['-Wl,--whole-archive', '-loslexec', '-Wl,--no-whole-archive', '-Wl,--version-script=source/creator/blender.map']