summaryrefslogtreecommitdiffstats
path: root/src/msvc2015.bat
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2022-09-21 10:51:13 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-21 10:51:13 +0100
commitf7c7aa3594b9f917b0b9571e1e60bef69b55244d (patch)
tree2e2af8659fe3579610a6b6cec48cd0cb28311fec /src/msvc2015.bat
parent5917341f65d4fc669b9d15343ccdb00c160201da (diff)
patch 9.0.0526: MS-Windows: still some support for XP and old compilersv9.0.0526
Problem: MS-Windows: still some support for XP and old compilers. Solution: Remove XP support and mention of old compilers. (Ken Takata, closes #11183)
Diffstat (limited to 'src/msvc2015.bat')
-rw-r--r--src/msvc2015.bat22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/msvc2015.bat b/src/msvc2015.bat
index 41e6f9037a..b541719ac2 100644
--- a/src/msvc2015.bat
+++ b/src/msvc2015.bat
@@ -11,27 +11,5 @@ rem This works on any editions including Express edition.
rem If you use Community (or Professional) edition, you can also use "x64"
rem option:
rem msvc2015 x64
-@echo on
call "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" %*
-
-rem Use Windows SDK 7.1A for targeting Windows XP.
-if "%ProgramFiles(x86)%"=="" (
- set "WinSdk71=%ProgramFiles%\Microsoft SDKs\Windows\v7.1A"
-) else (
- set "WinSdk71=%ProgramFiles(x86)%\Microsoft SDKs\Windows\v7.1A"
-)
-if not exist "%WinSdk71%" (
- echo Windows SDK 7.1A is not found. Targeting Windows Vista and later.
- goto :eof
-)
-
-set INCLUDE=%WinSdk71%\Include;%INCLUDE%
-if /i "%Platform%"=="x64" (
- set "LIB=%WinSdk71%\Lib\x64;%LIB%"
- set SUBSYSTEM_VER=5.02
-) else (
- set "LIB=%WinSdk71%\Lib;%LIB%"
- set SUBSYSTEM_VER=5.01
-)
-set CL=/D_USING_V110_SDK71_