about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-04-21 05:24:48 +0000
committerbors <bors@rust-lang.org>2022-04-21 05:24:48 +0000
commit5176945ad49005b82789be5700f5ae0e6efe5481 (patch)
treed793a27cc9b8207a44369d4ee567c8ed4066b64d /compiler/rustc_codegen_ssa
parent7be1da0319eb5f381bc0aa8559367bb33dfe90a5 (diff)
parent65cc0ad455634ad75be88781fa373400cfd337a0 (diff)
downloadrust-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.rs2
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.
         //