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:
authorThomas Dinges <blender@dingto.org>2013-06-18 14:05:47 +0400
committerThomas Dinges <blender@dingto.org>2013-06-18 14:05:47 +0400
commitc194cdaedfd56f055fa34b372df49e3cb7dc135d (patch)
tree98148a0d50f98fdde7a376938c551e1443ff3162 /intern/cycles/SConscript
parentd57c6748c4ebb37246caf25d4900ef6d5c16c0fe (diff)
Cycles / BVH:
* GCC needs -mssse3 compile flag too (4.7.2) to compile.
Diffstat (limited to 'intern/cycles/SConscript')
-rw-r--r--intern/cycles/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/SConscript b/intern/cycles/SConscript
index a7a4bc22dea..43f838157b9 100644
--- a/intern/cycles/SConscript
+++ b/intern/cycles/SConscript
@@ -86,7 +86,7 @@ if env['WITH_BF_RAYOPTIMIZATION']:
sse3_cxxflags.append('-D_CRT_SECURE_NO_WARNINGS /fp:fast /EHsc'.split())
else:
sse2_cxxflags.append('-ffast-math -msse -msse2 -mfpmath=sse'.split())
- sse3_cxxflags.append('-ffast-math -msse -msse2 -msse3 -mfpmath=sse'.split())
+ sse3_cxxflags.append('-ffast-math -msse -msse2 -msse3 -mssse3 -mfpmath=sse'.split())
defs.append('WITH_OPTIMIZED_KERNEL')
optim_defs = defs[:]