diff options
author | Jack Lloyd <[email protected]> | 2018-09-10 19:19:19 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-10-01 12:53:53 -0400 |
commit | 8eb900731da945d276f723534af09592213ee582 (patch) | |
tree | d080c6fd2ca760796b522d21288b0b4bfc0b6e65 /src/scripts | |
parent | a792728e8941b62761052f5e0d288ba13a016c77 (diff) |
Remove support for Visual C++ 2013
Closes GH #1557
Diffstat (limited to 'src/scripts')
-rw-r--r-- | src/scripts/ci/appveyor.yml | 7 | ||||
-rwxr-xr-x | src/scripts/ci_build.py | 3 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/scripts/ci/appveyor.yml b/src/scripts/ci/appveyor.yml index aa2b22c46..66c266ef2 100644 --- a/src/scripts/ci/appveyor.yml +++ b/src/scripts/ci/appveyor.yml @@ -4,9 +4,10 @@ clone_depth: 5 environment: matrix: - # MSVC 2013 DLL x86-64 - - MSVS: 2013 - PLATFORM: x86_amd64 + + # MSVC 2015 DLL x86-32 + - MSVS: 2015 + PLATFORM: x86 TARGET: shared APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index fe73156af..295b85123 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -59,9 +59,6 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro '--cc=%s' % (target_cc), '--os=%s' % (target_os)] - if target_cc == 'msvc': - flags += ['--ack-vc2013-deprecated'] - if target_cpu is not None: flags += ['--cpu=%s' % (target_cpu)] |