美文网首页
cargo run直接运行项目

cargo run直接运行项目

作者: 多啦梦_1adc | 来源:发表于2019-04-10 17:06 被阅读0次

进入根目录.cargo/
新建并编辑文件.config,添加如下内容
[build]

代表给 Cortex-M3 的CPU编译系统

target = "thumbv7m-none-eabi" # Cortex-M3

[target.thumbv7m-none-eabi]

添加这些命令可以直接使用 cargo run 来运行,如果无法理解这些命令,可以在自己通过本片文章成功运行系统后看Rust官方的文章

runner = "qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -semihosting-config enable=on,target=native -kernel"

rustflags = [

链接

"-C", "link-arg=-Tlink.x",
]
测试
cargo new apps
cd apps
cargo run
可见hello world

相关文章

网友评论

      本文标题:cargo run直接运行项目

      本文链接:https://www.haomeiwen.com/subject/ebzniqtx.html