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:
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
parent58fb16aa13e024cb5b4e37a2b0901d484d8e8096 (diff)
compile options for macos X builds
Diffstat (limited to 'extern')
-rw-r--r--extern/qhull/SConscript2
-rw-r--r--extern/solid/SConscript2
2 files changed, 2 insertions, 2 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)
diff --git a/extern/solid/SConscript b/extern/solid/SConscript
index aec339a2819..ff2388471fb 100644
--- a/extern/solid/SConscript
+++ b/extern/solid/SConscript
@@ -21,7 +21,7 @@ elif sys.platform=='linux2' or sys.platform=='linux-i386':
cflags += ['-O2']
elif sys.platform=='darwin' :
defines += ['NDEBUG']
- cflags += ['-O2', '-pipe', '-fPIC', '-funsigned-char', '-ffast-math']
+ cflags += ['-O3','-pipe', '-fPIC', '-funsigned-char', '-ffast-math', '-mpowerpc' ]
else:
print "################################################"