diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-11 07:26:39 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-11 07:26:39 +0200 |
commit | 634991096d72e1a6ccfd25574d2a9e90fed120f9 (patch) | |
tree | 0f1b5e96d0711bc13fe9a3b320abbf11b1f25fe3 /msvc-cl-common | |
parent | 3775f6aa680849c1bb7a5f8760a8f84203b615c8 (diff) |
Add support for rc.exe
Diffstat (limited to 'msvc-cl-common')
-rwxr-xr-x | msvc-cl-common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/msvc-cl-common b/msvc-cl-common index ce76fc8..7601d77 100755 --- a/msvc-cl-common +++ b/msvc-cl-common @@ -1,7 +1,7 @@ #! /usr/bin/env bash # Common cl.exe driver that expects the VC, INCLUDE, and LIB variables to -# be set for the specific MSVC version/configuration set. +# be set for the specific MSVC version/configuration. trap "{ exit 1; }" ERR set -o errtrace # Trap in functions. @@ -142,4 +142,4 @@ done export INCLUDE export LIB -msvc_exec $diag "$VC\\bin\\cl.exe" "${args[@]}" +msvc_exec $diag "$VCBIN\\cl.exe" "${args[@]}" |