MSVC toolchain is not supported. Please use GNU toolchain

前端 未结 2 1073
别那么骄傲
别那么骄傲 2020-12-29 10:09

I was trying to debug Rust in CLion when I was greeted with the aforementioned

I updated my toolchain setting to use the suggested default as such:

2条回答
  •  天命终不由人
    2020-12-29 10:20

    Error message is related about Rust toolchain, if you haven't you need to install gnu toolchain for Rust.

    > rustup toolchain install stable-x86_64-pc-windows-gnu
    

    Then after easiest way to solve this problem set it as default toolchain

    > rustup default stable-x86_64-pc-windows-gnu
    

    This is for stable channel you are free to use nightly or beta.

提交回复
热议问题