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

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

perf(cli): use -O3 instead of -Os
This commit is contained in:
Divy Srivastava 2022-09-22 20:07:01 +05:30 committed by GitHub
parent a43e9bebeb
commit 06c77a30f9
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 = 'z' # Optimize for size
opt-level = 3 # Optimize for speed
# NB: the `bench` and `release` profiles must remain EXACTLY the same.
[profile.bench]
codegen-units = 1
incremental = true
lto = true
opt-level = 'z' # Optimize for size
opt-level = 3 # Optimize for speed
# Key generation is too slow on `debug`
[profile.dev.package.num-bigint-dig]