error: failed to run custom build command for `ring v0.16.20`问题解决

  • 使用命令行 rustup show 查看工具链,可以看到有两个工具链
    error: failed to run custom build command for `ring v0.16.20`问题解决_第1张图片
  • 使用rustup default stable-x86_64-pc-windows-msvc设置默认的工具链

error: failed to run custom build command for `ring v0.16.20`问题解决_第2张图片

如果没有stable-x86_64-pc-windows-msvc

  • 安装 Visual Studio,确保选择 .NET 桌面开发、使用 C++ 的桌面开发和通用 Windows 平台开发。
  • 显示已安装的工具链rustup show。
  • 然后通过运行更改和设置工具链rustup default stable-x86_64-pc-windows-msvc。

你可能感兴趣的:(windows,rust)