mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 13:13:52 +02:00
vcvarsall: add page (#7439)
This commit is contained in:
parent
6713d2f2fe
commit
1025fec270
1 changed files with 21 additions and 0 deletions
21
pages/windows/vcvarsall.md
Normal file
21
pages/windows/vcvarsall.md
Normal file
|
@ -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: <https://docs.microsoft.com/cpp/build/building-on-the-command-line>.
|
||||
|
||||
- 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`
|
Loading…
Add table
Reference in a new issue