ref: 9b744922dd2b91700bbfe87e3661294ae3cc0d5c
parent: 648e30bca6a58039a8d3ec6fa956e8124766c8a9
author: Yaowu Xu <yaowu@google.com>
date: Tue Nov 5 09:45:55 EST 2013
disable avx/avx2 for old versions of MSVC Change-Id: Ifb40757c9c6b353482cfeef929af282ee0136c6c
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1091,6 +1091,15 @@
# Skip the check by setting AS arbitrarily
AS=msvs
msvs_arch_dir=x86-msvs
+ vc_version=${tgt_cc##vs}
+ case $vc_version in
+ 7|8|9)
+ echo "${tgt_cc} does not support avx/avx2, disabling....."
+ RTCD_OPTIONS="${RTCD_OPTIONS}--disable-avx --disable-avx2 "
+ soft_disable avx
+ soft_disable avx2
+ ;;
+ esac
;;
esac
--
⑨