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
path: root/extern
diff options
context:
space:
mode:
authorJens Verwiebe <info@jensverwiebe.de>2014-03-22 14:33:21 +0400
committerJens Verwiebe <info@jensverwiebe.de>2014-03-22 14:33:32 +0400
commit877706b8ebbecbbef159c1e04e69219d9fbd72ee (patch)
tree4f5ba4599d11a3fae3a1db7dfa1baf7d1125948f /extern
parent85e0f6904095ff18917f53df64c6fb0f2543a216 (diff)
Cleanup: Restrict the debug -gline-tables-only to cxx_debug in cycles and spelling
Diffstat (limited to 'extern')
-rw-r--r--extern/bullet2/src/SConscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/extern/bullet2/src/SConscript b/extern/bullet2/src/SConscript
index 54536ca9e13..58c97f0ca4f 100644
--- a/extern/bullet2/src/SConscript
+++ b/extern/bullet2/src/SConscript
@@ -40,9 +40,9 @@ incs = '. BulletCollision BulletDynamics LinearMath BulletSoftBody'
if sys.platform=='darwin':
if env['C_COMPILER_ID'] == 'clang' and env['CCVERSION'] >= '3.4':
- # Due some bugs in bullet, clang 3.4 produces wrong code when optimized below -O0
- # to avoid too much speed penalty compiling whole bullet lib non-optimized,
- # we build a seperate non-optimized/optimized parts and just link together finally
+ # Due some bugs in bullet, clang 3.4 produces wrong code when optimized > -O0
+ # to avoid too much speed penalty when compiling whole bullet lib non-optimized,
+ # we build seperate non-optimized/optimized parts and just link together finally
bullet2_src.remove("BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.cpp")
bullet2_fix_src = env.Glob("BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.cpp")
env.BlenderLib ( libname = 'extern_fix_bullet2', sources=bullet2_fix_src, includes=Split(incs), defines=Split(defs), libtype=['extern','player'], priority=[20,137], cc_compileflags=bt_flags, cxx_compileflags=bt_flags )