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:
authorEd Halley <ed@halley.cc>2007-01-28 17:55:57 +0300
committerEd Halley <ed@halley.cc>2007-01-28 17:55:57 +0300
commitcf04786a8bf99705c4e0d90941a18adc60977944 (patch)
treebb3c795fc64b0dc2f4de72a066b0f0147a6b6497 /extern/bullet2
parentd34cd388b8fe1b3b36232f8fd476eebe587707c7 (diff)
Removed -mpowerpc -mtune=G4 from several SCons files, so it will work on
either PPC or Intel architectures under OSX. These options should be inherited properly from the rest of the OSX SCons build system.
Diffstat (limited to 'extern/bullet2')
-rw-r--r--extern/bullet2/src/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/bullet2/src/SConscript b/extern/bullet2/src/SConscript
index 31cf9eca06d..1220be1b654 100644
--- a/extern/bullet2/src/SConscript
+++ b/extern/bullet2/src/SConscript
@@ -19,7 +19,7 @@ elif sys.platform=='linux2' or sys.platform=='linux-i386' or sys.platform=='free
cflags += ['-O2']
elif sys.platform=='darwin':
defs += ' NDEBUG'
- cflags += ['-O2','-pipe', '-fPIC', '-funsigned-char', '-ffast-math', '-mpowerpc' , '-mtune=G4']
+ cflags += ['-O2','-pipe', '-fPIC', '-funsigned-char', '-ffast-math']
linearmath_src = env.Glob("LinearMath/*.cpp")
bulletdyn_src = ["BulletDynamics/ConstraintSolver/btContactConstraint.cpp",