已经装了Rust扩展,但是没有办法编译运行程序,提示如标题。我是这么解决的,既然提示这个,肯定是没找到编译器啊。看看VS Code自己找一个行不行。在扩展(左侧边栏的积木图标)中,输入C++,有可以安装的,点击install。如果已经安装了,就卸载、重装。关闭VS Code。
重启动VS Code
如果没有安装MSVC,可以装GDB。
ext install C++ -- 安装C++(Windows)
ext install GDB Debug -- 安装GDB,LLDB
ext install vscode-rust
当点击左侧的运行、单击运行图标,或者ctrl+F5运行程序时,先编译,然后在debug console里面会看到输出。