summaryrefslogtreecommitdiff
path: root/build/make
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2011-02-28 20:16:14 -0500
committerJohn Koleszar <jkoleszar@google.com>2011-02-28 20:16:14 -0500
commit06ce0d8830a0a7c738c73cbdd6f98ae38d6f5ec0 (patch)
tree105f0321908125883e8309729677b764b9b436b6 /build/make
parentcfaee9f7c663150d4bc478bb47e3eb4038076ca5 (diff)
downloadlibvpx-06ce0d8830a0a7c738c73cbdd6f98ae38d6f5ec0.tar
libvpx-06ce0d8830a0a7c738c73cbdd6f98ae38d6f5ec0.tar.gz
libvpx-06ce0d8830a0a7c738c73cbdd6f98ae38d6f5ec0.tar.bz2
libvpx-06ce0d8830a0a7c738c73cbdd6f98ae38d6f5ec0.zip
change CFLAGS for 64 bit icc builds
AMD64 only implies SSE2, not SSE3. There aren't any known cases where icc was generating SSE3 instructions since all the vectorizable code is already in handwritten asm, so this fix is included mostly for correctness. Fixes issue #259. Change-Id: I993335a4740b68b559035305fb52ca725a6beaff
Diffstat (limited to 'build/make')
-rwxr-xr-xbuild/make/configure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make/configure.sh b/build/make/configure.sh
index ac99cf561..d504008a4 100755
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -867,7 +867,7 @@ process_common_toolchain() {
setup_gnu_toolchain
add_cflags -use-msasm -use-asm
add_ldflags -i-static
- enabled x86_64 && add_cflags -ipo -no-prec-div -static -xSSE3 -axSSE3
+ enabled x86_64 && add_cflags -ipo -no-prec-div -static -xSSE2 -axSSE2
enabled x86_64 && AR=xiar
case ${tune_cpu} in
atom*)