As titled, using Powershell after executing
PS C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build> .\vcvarsall.bat amd64
then programs like cl
, nmake
or msbuild
should be available on the path, but they are not
PS C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build> cl cl : The term 'cl' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1
- cl
- ~~
- CategoryInfo : ObjectNotFound: (cl:String) [], CommandNotFoundException
- FullyQualifiedErrorId : CommandNotFoundException
Specs:
- VS 2019 Community Edition with the "Desktop development with C++" workload:
- MSVC v142 - VS 2019 C++ x64/x86 build tools (v14.28)
- Windows 10 SDK (10.0.18362.0)
- Just-In-Time debugger
- C++ profiling tools
- C++ CMake tools for Windows
- C++ ATL for latest v142 build tools (x86 & x64)
- Test Adapter for Boost.Test
- Test Adapter for Google Test
- Live Share
- C++ AddressSanitizer (Experimental)
- Win10 Pro N x64, 20H2, 19042.746
What am I missing?