From 5ffe0c9e1be0257de1943135244419cbc86a6d84 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Fri, 14 Jul 2017 22:01:11 -0700 Subject: [PATCH] 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. --- src/mesa/drivers/dri/i965/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2