From 3863e63ef9abd200c16e44ab1980f06c19748397 Mon Sep 17 00:00:00 2001 From: Bob Burger Date: Thu, 7 Dec 2017 17:17:03 -0500 Subject: [PATCH] added support for Visual Studio 2017.15.5 original commit: 33eaccf5d0105186d66faa76e8463bab9369bf1a --- LOG | 4 +++- wininstall/locate-vcredist.bat | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/LOG b/LOG index a2c1e94447..b1abeb3710 100644 --- a/LOG +++ b/LOG @@ -755,4 +755,6 @@ - fix signature of bytevector-[u/s]16-native-set! primdata.ss - fix enumerate signature - primdata.ss \ No newline at end of file + primdata.ss +- added support for Visual Studio 2017.15.5 + wininstall/locate-vcredist.bat diff --git a/wininstall/locate-vcredist.bat b/wininstall/locate-vcredist.bat index 3dabab8b6d..c31aeba68b 100755 --- a/wininstall/locate-vcredist.bat +++ b/wininstall/locate-vcredist.bat @@ -17,6 +17,11 @@ @SET "Path32=%VCINSTALLDIR%Redist\MSVC\14.11.25325\MergeModules\Microsoft_VC141_CRT_x86.msm" @SET "Path64=%VCINSTALLDIR%Redist\MSVC\14.11.25325\MergeModules\Microsoft_VC141_CRT_x64.msm" ) + + @IF EXIST "%VCINSTALLDIR%Redist\MSVC\14.12.25810" ( + @SET "Path32=%VCINSTALLDIR%Redist\MSVC\14.12.25810\MergeModules\Microsoft_VC141_CRT_x86.msm" + @SET "Path64=%VCINSTALLDIR%Redist\MSVC\14.12.25810\MergeModules\Microsoft_VC141_CRT_x64.msm" + ) ) @DEL vcredist.wxs >nul 2>&1