You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building for -msvc with the VC++ 2015 build tools, the build fails:
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.Cpp.Platform.targets(57,5): error MSB8020: The build tools for v120 (Platform Toolset = 'v120') cannot be found. To build using the v120 build tools, please install v120 build tools. Alternatively, you may upgrade to the current Visual Studio tools by selecting the Project menu or right-click the solution, and then selecting "Retarget solution". [C:\Users\diggs\Projects\rustup-rs\target\debug\build\lzma-sys-8de572d4e0ca373d\out\build\windows\liblzma.vcxproj]
The project should probably not be tied to a specific platform toolset version.
The text was updated successfully, but these errors were encountered:
Yep, you just need to pass /p:PlatformToolset=v140/v120/v110/v100/v90 to the msbuild invocation, depending on the version of the VC++ build tools / visual studio.
When building for
-msvc
with the VC++ 2015 build tools, the build fails:The project should probably not be tied to a specific platform toolset version.
The text was updated successfully, but these errors were encountered: