Skip to content

Commit

Permalink
Merge pull request #28397 from ProvableHQ/lto-off
Browse files Browse the repository at this point in the history
Turn off LTO for dev and test builds.
  • Loading branch information
d0cd authored Oct 15, 2024
2 parents a55dfe2 + 510e829 commit 75a0277
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -242,12 +242,12 @@ debug-assertions = false

[profile.dev]
opt-level = 2
lto = "thin"
lto = "off"
incremental = true

[profile.test]
opt-level = 2
lto = "thin"
lto = "off"
incremental = true
debug = true
debug-assertions = true

0 comments on commit 75a0277

Please sign in to comment.