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/solid
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/solid')
-rw-r--r--extern/solid/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/solid/SConscript b/extern/solid/SConscript
index 8c0eebf2767..7482014c0a4 100644
--- a/extern/solid/SConscript
+++ b/extern/solid/SConscript
@@ -17,7 +17,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']
else:
print "################################################"