Browse Source

Change the codegen-units for low resources (#4336)

It seems (as disscusses here #4320) a single codegen unit makes it still
crash. This sets it to the default 16 Rust uses for the release profile.
pull/4370/head
Mathijs van Veluw 11 months ago
committed by GitHub
parent
commit
bb2412d033
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      Cargo.toml

2
Cargo.toml

@ -197,7 +197,7 @@ panic = "abort"
inherits = "release"
strip = "symbols"
lto = "thin"
codegen-units = 1
codegen-units = 16
# Linting config
[lints.rust]

Loading…
Cancel
Save