diff options
Diffstat (limited to 'msvc-link-common')
-rwxr-xr-x | msvc-link-common | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/msvc-link-common b/msvc-link-common index 64c8a0c..bec14dc 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 set. +# the specific MSVC version/configuration. trap "{ exit 1; }" ERR set -o errtrace # Trap in functions. @@ -75,6 +75,6 @@ done export LIB -# Link.exe always sends diagnostics to stdout. +# link.exe always sends diagnostics to stdout. # -msvc_exec 1 "$VC\\bin\\link.exe" "${args[@]}" +msvc_exec 1 "$VCBIN\\link.exe" "${args[@]}" |