Its already possible all they would need to do is add an attribute to opt-level:
[profile.release]
opt-level = 2
codegen-units = 1
lto = "thin"
strip = "debuginfo"
# Disable the biggest binary bloat offenders:
debug = false
incremental = false
Its already possible all they would need to do is add an attribute to opt-level:
[profile.release]
opt-level = 2
codegen-units = 1
lto = "thin"
strip = "debuginfo"
# Disable the biggest binary bloat offenders:
debug = false
incremental = false
Debug info and incr comp are already disabled in release mode by default.
huh.... thats interesting.
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.