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:
authorAndre Susano Pinto <andresusanopinto@gmail.com>2009-08-11 01:37:16 +0400
committerAndre Susano Pinto <andresusanopinto@gmail.com>2009-08-11 01:37:16 +0400
commit4ce316ee0fd230659485496c2fe0335e9e7ac7a1 (patch)
tree4508d02d6979f0d59134dc3f6e5ecc02affbb610 /source/blender/render/SConscript
parentb7a696e2ad8cc7d5c2b91d8fa714f3637aee64e3 (diff)
Ability to disable hints at compile time
Diffstat (limited to 'source/blender/render/SConscript')
-rw-r--r--source/blender/render/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/render/SConscript b/source/blender/render/SConscript
index 2228ff9ebb9..9c1dd385635 100644
--- a/source/blender/render/SConscript
+++ b/source/blender/render/SConscript
@@ -1,7 +1,7 @@
#!/usr/bin/python
Import ('env')
-cflags = ['-O3']
+cflags = ['-O3','-msse2','-mfpmath=sse']
cxxflags = ['-O3','-msse2','-mfpmath=sse']
sources = env.Glob('intern/source/*.c')
raysources = env.Glob('intern/raytrace/*.cpp')