我正在Windows 10(Linux的Windows子系统)上运行Debian,并使用以下命令安装了Rust:

curl https://sh.rustup.rs -sSf | sh

安装过程中没有错误,但是当我尝试使用rustc进行编译时,出现了错误linker 'cc' not found

最佳答案

Linux Rust安装程序不检查编译器工具链,但似乎假设您已经安装了C链接器!最好的解决方案是安装久经考验的gcc工具链。

sudo apt install build-essential

如果您需要定位另一种体系结构,请安装适当的工具链并按如下所示定位编译:
rustc --target=my_target_architecture -C linker=target_toolchain_linker my_rustfile.rs

关于linux - 如何在Windows 10上修复Debian的Rust错误 “linker ' cc'not found”?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52445961/

10-10 18:34