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:
authorJean-Luc Peurière <jlp@nerim.net>2004-07-28 00:31:03 +0400
committerJean-Luc Peurière <jlp@nerim.net>2004-07-28 00:31:03 +0400
commit0b9cf9006a062c8e6897b000c1204d963d1e5a4c (patch)
treecd92aa2b4b1c048bb62915e47702da8678313d38 /extern/qhull
parent58fb16aa13e024cb5b4e37a2b0901d484d8e8096 (diff)
compile options for macos X builds
Diffstat (limited to 'extern/qhull')
-rw-r--r--extern/qhull/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/qhull/SConscript b/extern/qhull/SConscript
index 47e1779b1bf..2b9487a9527 100644
--- a/extern/qhull/SConscript
+++ b/extern/qhull/SConscript
@@ -14,7 +14,7 @@ elif sys.platform=='win32':
elif sys.platform=='sunos':
qhull_env.Append (CCFLAGS = ['Xc', '-v', '-fast'])
elif sys.platform=='darwin':
- qhull_env.Append (CCFLAGS = ['-O2', '-pipe', '-fPIC', '-funsigned-char', '-ffast-math'])
+ qhull_env.Append (CCFLAGS = ['-O3', '-pipe', '-fPIC', '-funsigned-char', '-ffast-math', '-mpowerpc' ])
else:
qhull_env.Append (CCFLAGS = cflags)
qhull_env.Append (CPPDEFINES = defines)