diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2012-03-03 10:46:26 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-03-06 22:45:20 +0100 |
commit | 5ec21580f63180551bae762249c24a1888b625bb (patch) | |
tree | 36c9dab29b3ef4884dcc9b0d356c70714f1036c5 | |
parent | ccf28ba9cb562e74ce17439d88dcc5a10aefeef6 (diff) |
Revert "Use -mno-sse to prevent overzealous gcc optimizations"
AGESA uses SSE intrinsics :-(
This reverts commit 05f4b03fb64999ba373fe61256f358e5371bf8ae
Change-Id: I7c48e07a261eafda2119354d282bd05eac5a14b6
Reviewed-on: http://review.coreboot.org/706
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins)
-rw-r--r-- | util/xcompile/xcompile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index f5d43d0e88..49263941df 100644 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -84,10 +84,6 @@ testcc "$CC" "$CFLAGS-Wl,--build-id=none " && CFLAGS="$CFLAGS-Wl,--build-id=none # now: testcc "$CC" "$CFLAGS-Wno-unused-but-set-variable " && \ CFLAGS="$CFLAGS-Wno-unused-but-set-variable " -# Use bfd linker instead of gold if available: -testcc "$CC" "$CFLAGS-fuse-ld=bfd " && CFLAGS="$CFLAGS-fuse-ld=bfd " && LINKER_SUFFIX='.bfd' -# Prevent SSE instructions sneaking in: -testcc "$CC" "$CFLAGS-mno-sse " && CFLAGS="$CFLAGS-mno-sse " if which gcc 2>/dev/null >/dev/null; then HOSTCC=gcc |