diff options
Diffstat (limited to 'msvc-link-common')
-rwxr-xr-x | msvc-link-common | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/msvc-link-common b/msvc-link-common index 7b3481a..a83bac9 100755 --- a/msvc-link-common +++ b/msvc-link-common @@ -1,7 +1,7 @@ #! /usr/bin/env bash -# Common link.exe driver that expects the VC and LIB variables to be set for -# the specific MSVC version/configuration. +# Common link.exe driver that expects the VCBIN, SDKBIN, and LIB variables to +# be set for the specific MSVC version/configuration. trap "{ exit 1; }" ERR set -o errtrace # Trap in functions. @@ -177,6 +177,10 @@ done export LIB +# link.exe may need to run mt.exe which is in the SDK. +# +export WINEPATH=$SDKBIN + # link.exe always sends diagnostics to stdout. # msvc_exec 1 "$VCBIN\\link.exe" "${args[@]}" |