Archived
2
0
This repository has been archived on 2024-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
coreutils/.cargo/config.toml

7 lines
197 B
TOML
Raw Normal View History

2022-12-11 17:25:52 -07:00
[profile.release]
strip = true # strip symbols from the binary
opt-level = "z" # optimize for size
lto = true # link time optimization
codegen-units = 1 # decrease parallelization
panic = "abort"