1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

Revert "perf(cli): use -O3 instead of -Oz (#15952)" (#16053)

This reverts commit 06c77a30f9.
This commit is contained in:
Bartek Iwańczuk 2022-09-27 14:55:02 +02:00 committed by GitHub
parent f02f2425d5
commit a3b4037c8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,14 +34,14 @@ exclude = ["test_util/std/hash/_wasm"]
codegen-units = 1
incremental = true
lto = true
opt-level = 3 # Optimize for speed
opt-level = 'z' # Optimize for size
# NB: the `bench` and `release` profiles must remain EXACTLY the same.
[profile.bench]
codegen-units = 1
incremental = true
lto = true
opt-level = 3 # Optimize for speed
opt-level = 'z' # Optimize for size
# Key generation is too slow on `debug`
[profile.dev.package.num-bigint-dig]