mesa: Drop mmx optimizations on Haiku

* Prevents compatibility problems. As Haiku
  doesn't use rtasm anymore, it's kind of
  pointless.
This commit is contained in:
Alexander von Gluck IV 2013-01-06 16:09:35 -06:00
parent b9227b3e15
commit 23595aa427
1 changed files with 1 additions and 2 deletions

View File

@ -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']