From 539dc7649f67ec10097b3c8eb2c0073f0d0571ce Mon Sep 17 00:00:00 2001 From: Johann Date: Tue, 4 Dec 2018 15:52:08 -0800 Subject: [PATCH] remove old visual studio support Change-Id: I86682ef1aac1991e1ef6965e7aa298f6619bee13 --- README | 8 -------- build/make/configure.sh | 22 +++------------------- configure | 8 -------- 3 files changed, 3 insertions(+), 35 deletions(-) diff --git a/README b/README index 4e8bba0..318846f 100644 --- a/README +++ b/README @@ -69,8 +69,6 @@ COMPILING THE APPLICATIONS/LIBRARIES: armv7-linux-rvct armv7-linux-gcc armv7-none-rvct - armv7-win32-vs11 - armv7-win32-vs12 armv7-win32-vs14 armv7-win32-vs15 armv7s-darwin-gcc @@ -97,9 +95,6 @@ COMPILING THE APPLICATIONS/LIBRARIES: x86-os2-gcc x86-solaris-gcc x86-win32-gcc - x86-win32-vs10 - x86-win32-vs11 - x86-win32-vs12 x86-win32-vs14 x86-win32-vs15 x86_64-android-gcc @@ -116,9 +111,6 @@ COMPILING THE APPLICATIONS/LIBRARIES: x86_64-linux-icc x86_64-solaris-gcc x86_64-win64-gcc - x86_64-win64-vs10 - x86_64-win64-vs11 - x86_64-win64-vs12 x86_64-win64-vs14 x86_64-win64-vs15 generic-gnu diff --git a/build/make/configure.sh b/build/make/configure.sh index 2622040..00214c9 100644 --- a/build/make/configure.sh +++ b/build/make/configure.sh @@ -1037,8 +1037,7 @@ EOF msvs_arch_dir=arm-msvs disable_feature multithread disable_feature unit_tests - vs_version=${tgt_cc##vs} - if [ $vs_version -ge 12 ]; then + if [ ${tgt_cc##vs} -ge 12 ]; then # MSVC 2013 doesn't allow doing plain .exe projects for ARM32, # only "AppContainerApplication" which requires an AppxManifest. # Therefore disable the examples, just build the library. @@ -1353,28 +1352,13 @@ EOF # 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|10|11|12|13|14) + case ${tgt_cc##vs} in + 14) echo "${tgt_cc} does not support avx512, disabling....." RTCD_OPTIONS="${RTCD_OPTIONS}--disable-avx512 " soft_disable avx512 ;; esac - case $vc_version in - 7|8|9|10) - echo "${tgt_cc} does not support avx/avx2, disabling....." - RTCD_OPTIONS="${RTCD_OPTIONS}--disable-avx --disable-avx2 " - soft_disable avx - soft_disable avx2 - ;; - esac - case $vc_version in - 7|8|9) - echo "${tgt_cc} omits stdint.h, disabling webm-io..." - soft_disable webm_io - ;; - esac ;; esac diff --git a/configure b/configure index e0ffb55..ee9b3af 100755 --- a/configure +++ b/configure @@ -109,8 +109,6 @@ all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8 all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8 all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8 all_platforms="${all_platforms} armv7-win32-gcc" -all_platforms="${all_platforms} armv7-win32-vs11" -all_platforms="${all_platforms} armv7-win32-vs12" all_platforms="${all_platforms} armv7-win32-vs14" all_platforms="${all_platforms} armv7-win32-vs15" all_platforms="${all_platforms} armv7s-darwin-gcc" @@ -138,9 +136,6 @@ all_platforms="${all_platforms} x86-linux-icc" all_platforms="${all_platforms} x86-os2-gcc" all_platforms="${all_platforms} x86-solaris-gcc" all_platforms="${all_platforms} x86-win32-gcc" -all_platforms="${all_platforms} x86-win32-vs10" -all_platforms="${all_platforms} x86-win32-vs11" -all_platforms="${all_platforms} x86-win32-vs12" all_platforms="${all_platforms} x86-win32-vs14" all_platforms="${all_platforms} x86-win32-vs15" all_platforms="${all_platforms} x86_64-android-gcc" @@ -158,9 +153,6 @@ 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-gcc" -all_platforms="${all_platforms} x86_64-win64-vs10" -all_platforms="${all_platforms} x86_64-win64-vs11" -all_platforms="${all_platforms} x86_64-win64-vs12" all_platforms="${all_platforms} x86_64-win64-vs14" all_platforms="${all_platforms} x86_64-win64-vs15" all_platforms="${all_platforms} generic-gnu" -- 2.7.4