summaryrefslogtreecommitdiffstats
path: root/src/msvc2015.bat
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-09-18 22:58:41 +0200
committerBram Moolenaar <Bram@vim.org>2018-09-18 22:58:41 +0200
commita87f8fd3fe8697d2b43da5c89e3079aaa0f1c9c7 (patch)
treec89683af2b8cd2252236dacef72b715ead5fd416 /src/msvc2015.bat
parentfe15b7dfa628d4edd683dae9528194c0e5510128 (diff)
patch 8.1.0408: MSVC: cannot use the "x64" native compiler optionv8.1.0408
Problem: MSVC: cannot use the "x64" native compiler option. Solution: Ignore case for %Platform%. Improve documentation. (Ken Takata)
Diffstat (limited to 'src/msvc2015.bat')
-rw-r--r--src/msvc2015.bat6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/msvc2015.bat b/src/msvc2015.bat
index 5621fca752..41e6f9037a 100644
--- a/src/msvc2015.bat
+++ b/src/msvc2015.bat
@@ -7,6 +7,10 @@ rem For x86 builds run this without options:
rem msvc2015
rem For x64 builds run this with "x86_amd64" option:
rem msvc2015 x86_amd64
+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" %*
@@ -23,7 +27,7 @@ if not exist "%WinSdk71%" (
)
set INCLUDE=%WinSdk71%\Include;%INCLUDE%
-if "%Platform%"=="x64" (
+if /i "%Platform%"=="x64" (
set "LIB=%WinSdk71%\Lib\x64;%LIB%"
set SUBSYSTEM_VER=5.02
) else (