编辑Cargo.toml添加:
[profile.release]
codegen-units = 1 # 更好的优化
debug = true
lto = true # 更好的优化
根目录新建并编辑memory.x,添加代码:
MEMORY
{
FLASH : ORIGIN = 0x00000000, LENGTH = 256K
RAM : ORIGIN = 0x20000000, LENGTH = 64K
}
编辑Cargo.toml添加:
[profile.release]
codegen-units = 1 # 更好的优化
debug = true
lto = true # 更好的优化
根目录新建并编辑memory.x,添加代码:
MEMORY
{
FLASH : ORIGIN = 0x00000000, LENGTH = 256K
RAM : ORIGIN = 0x20000000, LENGTH = 64K
}
本文标题:rust项目优化
本文链接:https://www.haomeiwen.com/subject/rjsoiqtx.html
网友评论