2021-12-01 11:02:11 +00:00
|
|
|
# vcvarsall
|
|
|
|
|
2023-07-16 18:23:40 +01:00
|
|
|
> Setup the environment variables required for using the Microsoft Visual Studio tools.
|
2021-12-01 11:02:11 +00:00
|
|
|
> The path of `vcvarsall` for a certain Visual Studio installation can be found using `vswhere`.
|
2022-10-04 16:06:23 +01:00
|
|
|
> More information: <https://learn.microsoft.com/cpp/build/building-on-the-command-line>.
|
2021-12-01 11:02:11 +00:00
|
|
|
|
|
|
|
- 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`
|