Isaac 6.0 installation issue #500
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
The build is failing because it’s looking for the MSVC toolchain under Build Tools ( Fix: point the build at your Community install In your repo root, edit [repo_build.msbuild]
link_host_toolchain = true
vs_version = "vs2022"
vs_path = "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\"Use double backslashes in the path. If your Community install is in a different location, set More detail The Windows C++ Developer Configuration doc describes this: it recommends Visual Studio 2022 Community and shows how to set |
Beta Was this translation helpful? Give feedback.

The build is failing because it’s looking for the MSVC toolchain under Build Tools (
...\2022\BuildTools\), but the fileVC\Auxiliary\Build\Microsoft.VCToolsVersion.default.txtis missing there. That usually means either the build picked a Build Tools path by mistake, or you only have Visual Studio 2022 Community (which installs under aCommunityfolder, notBuildTools).Fix: point the build at your Community install
In your repo root, edit
repo.tomland set the Visual Studio path explicitly. Under the[repo_build.msbuild]section, add or uncommentvs_pathand set it to your Community installation. For a default install: