Uh oh!
There was an error while loading. Please reload this page.
std: Don't emit debuginfo for backtrace deps - #74591
Conversation
rust-highfive
commented
Jul 21, 2020
(rust_highfive has picked a reviewer for you, use r? to override) |
jonas-schievink
commented
Jul 21, 2020
@bors rollup=never |
Mark-Simulacrum
commented
Jul 21, 2020
@bors r+ |
bors
commented
Jul 21, 2020
📌 Commit 8a80a3eae7d0aa2f063d3effca4344edf9e73fdc has been approved by |
There was a problem hiding this comment.
Can we make it more dense?
| [profile.release.package.miniz_oxide] | |
| debug = 0 | |
| [profile.release.package.gimli] | |
| debug = 0 | |
| [profile.release.package.addr2line] | |
| debug = 0 | |
| [profile.release.package.object] | |
| debug = 0 | |
| [profile.release.package.adler] | |
| debug = 0 | |
| [profile.release.package] | |
| miniz_oxide = { debug = 0 } | |
| gimli = { debug = 0 } | |
| addr2line = { debug = 0 } | |
| object = { debug = 0 } | |
| adler = { debug = 0 } |
There was a problem hiding this comment.
This seems really unnecessary.
There was a problem hiding this comment.
Just out of curiosity, does TOML have the Nix thing of letting you write gimli = { debug = 0 } as gimli.debug = 0? IMO using the dot notation would feel more natural, but then again maybe that's personal bias.
There was a problem hiding this comment.
Yes TOML supports gimli.debug = 0, so I've gone ahead and updated to use that.
This was evaluated in rust-lang#74560 and shown to have a positive effect on some of the regressions originally reported from rust-lang#73441. While it doesn't recover all of the lost ground this is hopefully an easy enough knob to tweak that we don't have worry too much about it later.
8a80a3e to
3075cc3Comparealexcrichton
commented
Jul 21, 2020
@bors: r=Mark-Simulacrum |
bors
commented
Jul 21, 2020
📌 Commit 3075cc3 has been approved by |
Mark-Simulacrum
commented
Jul 22, 2020
@bors r- We've discussed a bit and we want to revert the (original) backtrace PR and re-land it in the next week or so, but after getting a try build that fully evaluates it plus this patch (amongst others, perhaps) to better gauge the effects on perf. |
alexcrichton
commented
Jul 22, 2020
Ok, then let's close this. |
This was evaluated in #74560 and shown to have a positive effect on some
of the regressions originally reported from #73441. While it doesn't
recover all of the lost ground this is hopefully an easy enough knob to
tweak that we don't have worry too much about it later.