1
Fork 0

Auto merge of #95612 - davidtwco:split-debuginfo-in-bootstrap, r=Mark-Simulacrum

bootstrap: add split-debuginfo config

Replace `run-dysutil` option with more general `split-debuginfo` option that works on all platforms.

r? `@Mark-Simulacrum`
This commit is contained in:
bors 2022-04-21 05:24:48 +00:00
commit 5176945ad4
4 changed files with 77 additions and 21 deletions

View file

@ -987,7 +987,7 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>(
// On MSVC packed debug information is produced by the linker itself so
// there's no need to do anything else here.
SplitDebuginfo::Packed if sess.target.is_like_msvc => {}
SplitDebuginfo::Packed if sess.target.is_like_windows => {}
// ... and otherwise we're processing a `*.dwp` packed dwarf file.
//