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:
authorNathan Letwory <nathan@letworyinteractive.com>2009-12-10 03:51:13 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2009-12-10 03:51:13 +0300
commit11af0ff2702ccd02f5dd7528e3f4c5039c635144 (patch)
tree103d63cf62f21422944cc22f6b06b33978a523d9 /config/linux2-config.py
parentee124514636be9c7456cf856bd4772af4a02ca48 (diff)
* WITH_BF_RAYOPTIMIZATION cleanup and flag separation by matd.
This adds BF_RAYOPTIMIZATION_SSE_FLAGS through which one can manage what SSE flags are best for the platform built for. Note that the ray optimizations coded by jaguarandi are SSE-intrinsics only.
Diffstat (limited to 'config/linux2-config.py')
-rw-r--r--config/linux2-config.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/config/linux2-config.py b/config/linux2-config.py
index 3e40b7af416..abe79ba5806 100644
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -167,6 +167,10 @@ BF_EXPAT_LIBPATH = '/usr/lib'
WITH_BF_OPENMP = True
+#Ray trace optimization
+WITH_BF_RAYOPTIMIZATION = False
+BF_RAYOPTIMIZATION_SSE_FLAGS = ['-msse','-pthread']
+
##
CC = 'gcc'
CXX = 'g++'