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:
authorJens Verwiebe <info@jensverwiebe.de>2011-09-28 21:28:37 +0400
committerJens Verwiebe <info@jensverwiebe.de>2011-09-28 21:28:37 +0400
commit6088d460efd48728cb3fc58254557766b79ef6d4 (patch)
treea49ce486e3de6f119f6f19c16e0d74b99c1e7943 /build_files
parenteb2c89ab875cc90c7ed9e62b1d5e786cb42493a1 (diff)
OSX: Give clear commenting and more up-to-date defaults
Diffstat (limited to 'build_files')
-rw-r--r--build_files/scons/config/darwin-config.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/build_files/scons/config/darwin-config.py b/build_files/scons/config/darwin-config.py
index 5d0c046ed05..ba0ece6d47e 100644
--- a/build_files/scons/config/darwin-config.py
+++ b/build_files/scons/config/darwin-config.py
@@ -90,9 +90,10 @@ LIBDIR = '${LCGDIR}'
################### Dependency settings ##################
#############################################################################
-#Defaults openMP to true if compiler handles it
+#Defaults openMP to true if compiler handles it ( only gcc 4.6.1 and newer )
+# if your compiler donĀ“t has accurate suffix you may have to enable it by hand !
if CC.endswith('4.6.1'):
- WITH_BF_OPENMP = True # multithreading for fluids, cloth and smoke
+ WITH_BF_OPENMP = True # multithreading for fluids, cloth, sculpt and smoke
else:
WITH_BF_OPENMP = False