We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9e87f2 commit a2fbd7bCopy full SHA for a2fbd7b
tools/local-env/windows-msvc.sh
@@ -22,12 +22,13 @@ fi
22
case "$_arch" in
23
aarch64)
24
# aarch64 require v143 toolset (to support ARM64/ARM64EC and MT/MTd runtime)
25
- _vcvars_ver=15.0
+ _vcvars_ver=auto
26
;;
27
*)
28
# default to v141 toolset (goal is to support the lowest version possible)
29
30
31
esac
32
33
+. "$(dirname -- "$0")/../../external/vcvars-bash/vcvarsrun.sh" all # dump toolset versions
34
exec "$(dirname -- "$0")/../../external/vcvars-bash/vcvarsrun.sh" "$_vcvars_arch" -vcvars_ver="$_vcvars_ver" -- "$@"
0 commit comments