Skip to content

Commit 3516a16

Browse files
committedJul 20, 2020
std: Test not emitting debuginfo for backtrace deps
This is an attempt to see if this affects the regression from #73441 where most of the regression appears to be in the linker, and the linker does certainly spend a lot of time in debuginfo.
1 parent 1fa54ad commit 3516a16

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
 

‎Cargo.toml

+11
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,17 @@ overflow-checks = false
5555
# per-crate configuration isn't specifiable in the environment.
5656
codegen-units = 10000
5757

58+
[profile.release.package.miniz_oxide]
59+
debug = 0
60+
[profile.release.package.gimli]
61+
debug = 0
62+
[profile.release.package.addr2line]
63+
debug = 0
64+
[profile.release.package.object]
65+
debug = 0
66+
[profile.release.package.adler]
67+
debug = 0
68+
5869
# We want the RLS to use the version of Cargo that we've got vendored in this
5970
# repository to ensure that the same exact version of Cargo is used by both the
6071
# RLS and the Cargo binary itself. The RLS depends on Cargo as a git repository

0 commit comments

Comments
 (0)