From cd6d79cda2487b3cc1a2955116a65746b669878b Mon Sep 17 00:00:00 2001 From: Vladimir Serbinenko Date: Fri, 6 Nov 2015 04:32:34 +0100 Subject: [PATCH] configure.ac: Explicitly add -mno-sse3 on x86. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 21691c15c..9e8a606a6 100644 --- a/configure.ac +++ b/configure.ac @@ -783,7 +783,7 @@ fi if ( test "x$target_cpu" = xi386 || test "x$target_cpu" = xx86_64 ) && test "x$platform" != xemu; then # Some toolchains enable these features by default, but they need # registers that aren't set up properly in GRUB. - TARGET_CFLAGS="$TARGET_CFLAGS -mno-mmx -mno-sse -mno-sse2 -mno-3dnow" + TARGET_CFLAGS="$TARGET_CFLAGS -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow" fi # GRUB doesn't use float or doubles at all. Yet some toolchains may decide