进入根目录.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
网友评论