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-11-14 17:38:03 +0300
committerJean-Luc Peurière <jlp@nerim.net>2004-11-14 17:38:03 +0300
commitcd7b7899079b9a275b2b62321ae3f11ce279fad6 (patch)
tree382c7409ce615ece02840c0fee9f9a0582b4571a /extern/qhull
parentfcf3dd2930c4b2e115378b7ba7eb2a1897926994 (diff)
more conservative default build options for OS X
O3 works thought on my system, but should not be set on reference releases
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 2b9487a9527..5c87b8d3452 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 = ['-O3', '-pipe', '-fPIC', '-funsigned-char', '-ffast-math', '-mpowerpc' ])
+ qhull_env.Append (CCFLAGS = ['-O2', '-pipe', '-fPIC', '-funsigned-char', '-ffast-math', '-mpowerpc' , '-mtune=G4'])
else:
qhull_env.Append (CCFLAGS = cflags)
qhull_env.Append (CPPDEFINES = defines)