summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYunqing Wang <yunqingwang@google.com>2010-06-17 13:34:19 -0400
committerYunqing Wang <yunqingwang@google.com>2010-06-18 13:18:25 -0400
commit7630e36f1bda1dbf6e63c2514927b0e524787a41 (patch)
treefe7ccbdff80a675797ae925c987fb379b99953f1
parent51ae606b73e915ab65c99a33bffa56e32c060041 (diff)
downloadlibvpx-7630e36f1bda1dbf6e63c2514927b0e524787a41.tar.gz
Add x86_64-linux-icc target to build VP8 with icc
Add a target for icc. Change-Id: Ia1db82373d9c7268848bbb65c9483d408b9d933f
-rwxr-xr-xbuild/make/configure.sh2
-rwxr-xr-xconfigure1
2 files changed, 3 insertions, 0 deletions
diff --git a/build/make/configure.sh b/build/make/configure.sh
index 05e550fb0..b22fbbabb 100755
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -797,6 +797,8 @@ 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 && AR=xiar
;;
gcc*)
add_cflags -m${bits}
diff --git a/configure b/configure
index 9a3269a7f..f68f018d5 100755
--- a/configure
+++ b/configure
@@ -109,6 +109,7 @@ all_platforms="${all_platforms} x86-win32-vs7"
all_platforms="${all_platforms} x86-win32-vs8"
all_platforms="${all_platforms} x86_64-darwin9-gcc"
all_platforms="${all_platforms} x86_64-linux-gcc"
+all_platforms="${all_platforms} x86_64-linux-icc"
all_platforms="${all_platforms} x86_64-solaris-gcc"
all_platforms="${all_platforms} x86_64-win64-vs8"
all_platforms="${all_platforms} universal-darwin8-gcc"