aboutsummaryrefslogtreecommitdiff
path: root/msvc-11
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-07-29 18:14:06 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-07-29 18:14:06 +0200
commitb0e0ca4e60483b76383ae3575ef39423fda608d6 (patch)
treea246d666a5fd74a04b5ad6dae8422ad563840600 /msvc-11
parent9f6facd4f3bcc3b7f522c74616c184d7b8cdbfb4 (diff)
Use 64-to-32 cross compiler for VC 12 and 14
32-bit link.exe hangs with /DEBUG.
Diffstat (limited to 'msvc-11')
-rwxr-xr-xmsvc-115
1 files changed, 3 insertions, 2 deletions
diff --git a/msvc-11 b/msvc-11
index 4fcee37..e226f5c 100755
--- a/msvc-11
+++ b/msvc-11
@@ -1,8 +1,8 @@
#! /usr/bin/env bash
-# MSVC 11 setup/configuration.
+# MSVC 11 32-bit setup/configuration.
#
-# Should set the SDKBIN, VCBIN, INCLUDE, and LIB variables.
+# Should set the SDKBIN, VCBIN, VCDLL, INCLUDE, and LIB variables.
#
# SDK
@@ -17,6 +17,7 @@ LIB="$SDK\\lib\\win8\\um\\x86"
#
VC="C:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\VC"
VCBIN="$VC\\bin"
+VCDLL="$VC\\bin"
INCLUDE="$VC\\include;$INCLUDE"
LIB="$VC\\lib;$LIB"