win10下我的第一个rust程序的编译及运行
2021-01-05 21:29
标签:tar ase 目录 error: 命令行 als target tools print 新建一个rust程序 命令行运行 解决办法是去必应搜索“Download Visual C++ Build Tools”,然后下载最新版本的 Visual C++ Build Tools 并安装即可。 我的下载链接是:https://visualstudio.microsoft.com/zh-hans/visual-cpp-build-tools/ 安装好后执行 win10下我的第一个rust程序的编译及运行 标签:tar ase 目录 error: 命令行 als target tools print 原文地址:https://www.cnblogs.com/fifolilo/p/13179700.htmlmain.rs
,内容如下:fn main() {
println!("hello,world!");
}
rustc main.rs
报错如下:> rustc .\main.rs
error: linker `link.exe` not found
|
= note: 系统找不到指定的文件。 (os error 2)
note: the msvc targets depend on the msvc linker but `link.exe` was not found
note: please ensure that VS 2013, VS 2015, VS 2017 or VS 2019 was installed with the Visual C++ option
error: aborting due to previous error
rustc main.rs
会在当前目录生成一个 main.exe
文件,执行 .\main.exe
就能看到程序运行的结果了:> .\main.exe
hello,world!
文章标题:win10下我的第一个rust程序的编译及运行
文章链接:http://soscw.com/index.php/essay/40356.html