From 1025fec2709affd30384f1257caaefebf51c73f1 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Wed, 1 Dec 2021 05:02:11 -0600 Subject: [PATCH] vcvarsall: add page (#7439) --- pages/windows/vcvarsall.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/windows/vcvarsall.md diff --git a/pages/windows/vcvarsall.md b/pages/windows/vcvarsall.md new file mode 100644 index 0000000000..53c2ad3226 --- /dev/null +++ b/pages/windows/vcvarsall.md @@ -0,0 +1,21 @@ +# vcvarsall + +> Setup the environment variables required for using the Microsoft Visual Studio tools from the command line. +> The path of `vcvarsall` for a certain Visual Studio installation can be found using `vswhere`. +> More information: . + +- Setup the environment for native x64: + +`vcvarsall x64` + +- Setup the environment for cross-compiled native x86 from the x64 host: + +`vcvarsall x64_x86` + +- Setup the environment for cross-compiled native Arm x64 from the x64 host: + +`vcvarsall x64_arm64` + +- Setup the environment for native UWP x64: + +`vcvarsall x64 uwp`