Skip to content

Commit

Permalink
fix: use the correct wasm profile
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Oct 18, 2024
1 parent 5197d0d commit 3ffbe35
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,20 +87,13 @@ fvm_integration_tests = { path = "testing/integration", version = "~4.4.1" }
fvm_gas_calibration_shared = { path = "testing/calibration/shared" }
fvm_test_actors = { path = "testing/test_actors" }

[profile.actor]
inherits = "release"
panic = "abort"
overflow-checks = true
lto = true
opt-level = "z"
#strip = true

# Same as in the built-in actors repo
[profile.wasm]
inherits = "release"
panic = "abort"
overflow-checks = false
lto = true
opt-level = "z"
panic = "unwind"
overflow-checks = true
lto = "thin"
opt-level = 3
strip = true
codegen-units = 1
incremental = false

0 comments on commit 3ffbe35

Please sign in to comment.