summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2017-07-14 22:01:11 -0700
committerMatt Turner <[email protected]>2017-07-14 22:01:11 -0700
commit5ffe0c9e1be0257de1943135244419cbc86a6d84 (patch)
treef0ecc230adef29843e1f88fdcff32760fa43937a /src/mesa
parent6b05c080f202c25531f59b547d5e6ba339cedd09 (diff)
i965: Compile with -msse2 (instead of -msse2)
Ian noted that were were two Pentium 4 Extreme Edition LGA 775 CPUs, and they only have SSE2.
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.am b/src/mesa/drivers/dri/i965/Makefile.am
index 9293820c217..7ef4e796832 100644
--- a/src/mesa/drivers/dri/i965/Makefile.am
+++ b/src/mesa/drivers/dri/i965/Makefile.am
@@ -43,7 +43,7 @@ AM_CFLAGS = \
$(VISIBILITY_CFLAGS) \
$(LIBDRM_CFLAGS) \
$(VALGRIND_CFLAGS) \
- -msse3
+ -msse2
AM_CXXFLAGS = $(AM_CFLAGS)