rust项目优化

2019-04-10  本文已影响0人  多啦梦_1adc

编辑Cargo.toml添加:
[profile.release]
codegen-units = 1 # 更好的优化
debug = true
lto = true # 更好的优化

根目录新建并编辑memory.x,添加代码:
MEMORY
{
FLASH : ORIGIN = 0x00000000, LENGTH = 256K
RAM : ORIGIN = 0x20000000, LENGTH = 64K
}

上一篇下一篇

猜你喜欢

热点阅读