diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-05-08 12:22:36 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-05-08 12:22:36 +0200 |
commit | 27850a67cc4c5344d5a8d0d9efb59a1496e7d4dc (patch) | |
tree | 3b601b0743cc2b883c757333bbb1b650d0339fa6 /msvc-15/msvc-15u0-32 | |
parent | bf96eebec917c7d56f391f1e72ebefd073dce0b0 (diff) |
Drop 15rc* and add 15u0
Diffstat (limited to 'msvc-15/msvc-15u0-32')
-rwxr-xr-x | msvc-15/msvc-15u0-32 | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/msvc-15/msvc-15u0-32 b/msvc-15/msvc-15u0-32 new file mode 100755 index 0000000..b9c932e --- /dev/null +++ b/msvc-15/msvc-15u0-32 @@ -0,0 +1,44 @@ +#! /usr/bin/env bash + +# file : msvc-15/msvc-15u0-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.10.25017" +VCBIN="$VC\\bin\\HostX64\\x86" +VCDLL="$VC\\bin\\HostX64\\x64" + +INCLUDE="$VC\\include;$INCLUDE" +LIB="$VC\\lib\\x86;$LIB" |