Skip to content

Commit 54b5250

Browse files
committed
Set DebuginfoKind::Dwarf for *-windows-gnu and *-windows-gnullvm
These targets have always generated DWARF debuginfo and not CodeView/PDB debuginfo like the MSVC Windows targets. Correct their target definitions to reflect this. The newly added tests for the various combinations of `*-windows-gnu*` targets and `-Csplit-debuginfo` show that this does not change any stable behavior.
1 parent b437ace commit 54b5250

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/rustc_target/src/spec/base/windows_gnu.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ pub(crate) fn opts() -> TargetOptions {
9797
emit_debug_gdb_scripts: false,
9898
requires_uwtable: true,
9999
eh_frame_header: false,
100+
debuginfo_kind: DebuginfoKind::Dwarf,
100101
// FIXME(davidtwco): Support Split DWARF on Windows GNU - may require LLVM changes to
101102
// output DWO, despite using DWARF, doesn't use ELF..
102-
debuginfo_kind: DebuginfoKind::Pdb,
103103
supported_split_debuginfo: Cow::Borrowed(&[SplitDebuginfo::Off]),
104104
..Default::default()
105105
}

compiler/rustc_target/src/spec/base/windows_gnullvm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ pub(crate) fn opts() -> TargetOptions {
4444
has_thread_local: true,
4545
crt_static_allows_dylibs: true,
4646
crt_static_respected: true,
47+
debuginfo_kind: DebuginfoKind::Dwarf,
4748
// FIXME(davidtwco): Support Split DWARF on Windows GNU - may require LLVM changes to
4849
// output DWO, despite using DWARF, doesn't use ELF..
49-
debuginfo_kind: DebuginfoKind::Pdb,
5050
supported_split_debuginfo: Cow::Borrowed(&[SplitDebuginfo::Off]),
5151
..Default::default()
5252
}

0 commit comments

Comments
 (0)