File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 3
3
ck = " check --workspace --all-features --all-targets --locked"
4
4
lint = " clippy --workspace --all-targets --all-features"
5
5
codecov = " llvm-cov --workspace --ignore-filename-regex tasks"
6
- coverage = " run -p oxc_coverage --release --"
6
+ coverage = " run -p oxc_coverage --profile release-thin --"
7
7
benchmark = " run -p oxc_benchmark --release --"
8
8
minsize = " run -p oxc_minsize --release --"
9
9
rule = " run -p rulegen"
Original file line number Diff line number Diff line change @@ -202,3 +202,8 @@ codegen-units = 1
202
202
strip = " symbols" # set to `false` for debug information
203
203
debug = false # set to `true` for debug information
204
204
panic = " abort" # Let it crash and force ourselves to write safe Rust.
205
+
206
+ # Faster compile time with thin lto
207
+ [profile .release-thin ]
208
+ inherits = " release"
209
+ lto = " thin"
You can’t perform that action at this time.
0 commit comments