diff options
| author | bors <bors@rust-lang.org> | 2022-04-21 05:24:48 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-04-21 05:24:48 +0000 |
| commit | 5176945ad49005b82789be5700f5ae0e6efe5481 (patch) | |
| tree | d793a27cc9b8207a44369d4ee567c8ed4066b64d /compiler/rustc_codegen_ssa | |
| parent | 7be1da0319eb5f381bc0aa8559367bb33dfe90a5 (diff) | |
| parent | 65cc0ad455634ad75be88781fa373400cfd337a0 (diff) | |
| download | rust-5176945ad49005b82789be5700f5ae0e6efe5481.tar.gz rust-5176945ad49005b82789be5700f5ae0e6efe5481.zip | |
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`
Diffstat (limited to 'compiler/rustc_codegen_ssa')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/back/link.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/link.rs b/compiler/rustc_codegen_ssa/src/back/link.rs index cf32d558d4a..4d20ed841d4 100644 --- a/compiler/rustc_codegen_ssa/src/back/link.rs +++ b/compiler/rustc_codegen_ssa/src/back/link.rs @@ -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. // |
