summaryrefslogtreecommitdiff
path: root/scons
diff options
context:
space:
mode:
authorAlexander von Gluck IV <kallisti5@unixzen.com>2013-01-06 16:09:35 -0600
committerAlexander von Gluck IV <kallisti5@unixzen.com>2013-01-07 17:39:49 -0600
commit23595aa427073d876b828646e973be5b28cb5676 (patch)
treeec45fc752940cd3d4f62dc61d5d372538582b65b /scons
parentb9227b3e15d8e8d4e6e96efbad940a32c0853c19 (diff)
mesa: Drop mmx optimizations on Haiku
* Prevents compatibility problems. As Haiku doesn't use rtasm anymore, it's kind of pointless.
Diffstat (limited to 'scons')
-rwxr-xr-xscons/gallium.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/scons/gallium.py b/scons/gallium.py
index 98671f75d2f..7207c6bb26c 100755
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -361,8 +361,7 @@ def generate(env):
ccflags += [
'-mstackrealign', # ensure stack is aligned
'-march=i586', # Haiku target is Pentium
- '-mtune=i686', # use i686 where we can
- '-mmmx' # use mmx math where we can
+ '-mtune=i686' # use i686 where we can
]
if env['machine'] == 'x86_64':
ccflags += ['-m64']