Skip to content

Commit

Permalink
workaround the rust issue (#397)
Browse files Browse the repository at this point in the history
This works around rust-lang/rust#108853 by using an `opt-level` of `3`
rather than `s`.

- [x] Changelog updated / no changelog update needed
  • Loading branch information
corwinkuiper committed Mar 23, 2023
2 parents 5ad2ad0 + 0127508 commit 4562c4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agb/Cargo.toml
Expand Up @@ -12,8 +12,8 @@ opt-level = 3
debug = true

[profile.release]
opt-level = "s"
lto = "thin"
opt-level = 3
lto = "fat"
debug = true

[features]
Expand Down

0 comments on commit 4562c4e

Please sign in to comment.