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/qhull
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/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 d391d445508..7f911d1b7f1 100644
--- a/extern/qhull/SConscript
+++ b/extern/qhull/SConscript
@@ -14,7 +14,7 @@ elif env['OURPLATFORM']=='win32-mingw':
elif sys.platform=='sunos5':
cflags += ['-O2', '-ansi']
elif sys.platform=='darwin':
- cflags += ['-O2', '-pipe', '-fPIC', '-funsigned-char', '-ffast-math', '-mpowerpc' , '-mtune=G4']
+ cflags += ['-O2', '-pipe', '-fPIC', '-funsigned-char', '-ffast-math']
sources = ['src/geom.c',
'src/geom2.c',