From e813843b46ace97be060a92ce400496a2e7dbf5c Mon Sep 17 00:00:00 2001
From: Johann <johannkoenig@google.com>
Date: Mon, 18 Nov 2013 13:30:19 -0800
Subject: [PATCH] Disable avx/avx2 for Visual Studio 2010

VS2010 only supports avx. There is currently no avx code
in libvpx so don't create a special case for it.

Change-Id: Iacb10ea4762155412e04f23904b4324d01451fbd
---
 build/make/configure.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build/make/configure.sh b/build/make/configure.sh
index 0106737b8a..8dcb9bbf42 100755
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1078,7 +1078,7 @@ EOF
                 msvs_arch_dir=x86-msvs
                 vc_version=${tgt_cc##vs}
                 case $vc_version in
-                    7|8|9)
+                    7|8|9|10)
                          echo "${tgt_cc} does not support avx/avx2, disabling....."
                          RTCD_OPTIONS="${RTCD_OPTIONS}--disable-avx --disable-avx2 "
                          soft_disable avx
-- 
GitLab