From b0e0ca4e60483b76383ae3575ef39423fda608d6 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 29 Jul 2016 18:14:06 +0200 Subject: Use 64-to-32 cross compiler for VC 12 and 14 32-bit link.exe hangs with /DEBUG. --- msvc-14 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'msvc-14') diff --git a/msvc-14 b/msvc-14 index 2e0c53a..77e2259 100755 --- a/msvc-14 +++ b/msvc-14 @@ -1,8 +1,8 @@ #! /usr/bin/env bash -# MSVC 14 setup/configuration. +# MSVC 14 32-bit setup/configuration (note: using 64-to-32 cross-compiler). # -# Should set the SDKBIN, VCBIN, INCLUDE, and LIB variables. +# Should set the SDKBIN, VCBIN, VCDLL, INCLUDE, and LIB variables. # # SDK @@ -24,7 +24,8 @@ LIB="$CRT\\lib\\$CRTVER\\ucrt\\x86;$LIB" # VC # VC="C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC" -VCBIN="$VC\\bin" +VCBIN="$VC\\bin\\amd64_x86" +VCDLL="$VC\\bin\\amd64" INCLUDE="$VC\\include;$INCLUDE" LIB="$VC\\lib;$LIB" -- cgit v1.1