diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-09-11 14:05:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-09-11 14:05:06 +0200 |
commit | c0057bb1dcdae980c1f9dc1c892cc1281fedde64 (patch) | |
tree | 9ae16e8f6ebdf04220d6475b9fc368c95f32765d /msvc-15/msvc-15u3-32 | |
parent | 07e12d4fa3ace19bdac48a04c6910bdc608070b1 (diff) |
Add support for 15u3
Toolchain directory is 14.11.25503, compiler version is 19.11.25507.1.
Diffstat (limited to 'msvc-15/msvc-15u3-32')
-rwxr-xr-x | msvc-15/msvc-15u3-32 | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/msvc-15/msvc-15u3-32 b/msvc-15/msvc-15u3-32 new file mode 100755 index 0000000..3c20cec --- /dev/null +++ b/msvc-15/msvc-15u3-32 @@ -0,0 +1,45 @@ +#! /usr/bin/env bash + +# file : msvc-15/msvc-15u3-32 +# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file + +# MSVC 15 32-bit setup/configuration (note: using 64-to-32 cross-compiler). +# +# Should set the SDKBIN, VCBIN, VCDLL, INCLUDE, and LIB variables. +# +if [ -z "$MSVC_INSTALLDIR" ]; then + MSVC_INSTALLDIR="Microsoft Visual Studio 15.0" +fi + +if [ -z "$MSVC_SDKVERSION" ]; then + source "$src_dir/msvc-common/msvc-sdk-common" + MSVC_SDKVERSION="$(windows10_sdkversion)" +fi + +# SDK +# +SDK="C:\\Program Files (x86)\\Windows Kits\\10" +SDKBIN="$SDK\\bin\\x86" +SDKVER="$MSVC_SDKVERSION.0" + +INCLUDE="$SDK\\include\\$SDKVER\\shared;$SDK\\include\\$SDKVER\\um;$SDK\\include\\$SDKVER\\winrt" +LIB="$SDK\\lib\\$SDKVER\\um\\x86" + +# CRT +# +CRT="C:\\Program Files (x86)\\Windows Kits\\10" +CRTVER="$MSVC_SDKVERSION.0" + +INCLUDE="$CRT\\include\\$CRTVER\\ucrt;$INCLUDE" +LIB="$CRT\\lib\\$CRTVER\\ucrt\\x86;$LIB" + +# VC +# +VC="C:\\Program Files (x86)\\$MSVC_INSTALLDIR\\VC\\Tools\\MSVC\\14.11.25503" +VCBIN="$VC\\bin\\HostX64\\x86" +VCDLL="$VC\\bin\\HostX64\\x64" + +INCLUDE="$VC\\include;$INCLUDE" +IFCPATH="$VC\\ifc\\x86" +LIB="$VC\\lib\\x86;$LIB" |