mesa: Drop mmx optimizations on Haiku
authorAlexander von Gluck IV <kallisti5@unixzen.com>
Sun, 6 Jan 2013 22:09:35 +0000 (16:09 -0600)
committerAlexander von Gluck IV <kallisti5@unixzen.com>
Mon, 7 Jan 2013 23:39:49 +0000 (17:39 -0600)
* Prevents compatibility problems. As Haiku
  doesn't use rtasm anymore, it's kind of
  pointless.

scons/gallium.py

index 98671f75d2f0f6a4e05f0c619b8ff3bb8d2dc740..7207c6bb26cefe6a37dda5d9e6be41974e01885a 100755 (executable)
@@ -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']