1 个不稳定版本
使用旧的 Rust 2015
0.0.0 | 2018年6月12日 |
---|
#7 在 #ccc
48KB
1K SLoC
为CCCamp 2015 rad1o徽章编写可加载的应用程序。
先决条件
文件 .cargo/config
[target.thumbv7em-none-eabihf]
runner = "arm-none-eabi-gdb"
rustflags = [
"-C", "link-arg=-Tl0dable.x",
"-C", "linker=lld",
"-Z", "linker-flavor=ld.lld",
]
[build]
target = "thumbv7em-none-eabihf"
在 Cargo.toml
中启用链接时间优化
可选,但强烈建议为了代码大小
[profile.release]
lto = true
构建脚本
cargo build --release
arm-none-eabi-objcopy -O binary --strip-unneeded target/thumbv7m-none-eabi/release/demo demo.c1d
依赖关系
~59MB
~1M SLoC