Skip to content

Commit 0fff25a

Browse files
glandiumthomcc
authored andcommitted
Use a DWARF version consistent with rustc
Rustc defaults to DWARF-2 on some targets, and DWARF-4 on others. However using -g with the C compiler yields whatever default version the C compiler prefers. One side effect is that the DWARF debug info shipped in some libraries with rustc itself (e.g. libcompiler_builtins and others) have recently switched to DWARF-5 as a side effect of upgrading the clang version used on rustc CI. (rust-lang/rust#98746) Ideally, the preferred DWARF version would be given by the rust compiler and/or cargo, but that's not the case at the moment, so the next best thing is something that aligns with the current defaults, although work in under way to add a rustc flag that would allow to pick the preferred DWARF version (rust-lang/rust#98350)
1 parent 8d4cc27 commit 0fff25a

File tree

2 files changed

+46
-8
lines changed

2 files changed

+46
-8
lines changed

src/lib.rs

+26-3
Original file line numberDiff line numberDiff line change
@@ -214,13 +214,17 @@ enum ToolFamily {
214214

215215
impl ToolFamily {
216216
/// What the flag to request debug info for this family of tools look like
217-
fn add_debug_flags(&self, cmd: &mut Tool) {
217+
fn add_debug_flags(&self, cmd: &mut Tool, dwarf_version: Option<u32>) {
218218
match *self {
219219
ToolFamily::Msvc { .. } => {
220220
cmd.push_cc_arg("-Z7".into());
221221
}
222222
ToolFamily::Gnu | ToolFamily::Clang => {
223-
cmd.push_cc_arg("-g".into());
223+
cmd.push_cc_arg(
224+
dwarf_version
225+
.map_or_else(|| "-g".into(), |v| format!("-gdwarf-{}", v))
226+
.into(),
227+
);
224228
}
225229
}
226230
}
@@ -1589,7 +1593,7 @@ impl Build {
15891593
cmd.args.push("-G".into());
15901594
}
15911595
let family = cmd.family;
1592-
family.add_debug_flags(cmd);
1596+
family.add_debug_flags(cmd, self.get_dwarf_version());
15931597
}
15941598

15951599
if self.get_force_frame_pointer() {
@@ -2848,6 +2852,25 @@ impl Build {
28482852
})
28492853
}
28502854

2855+
fn get_dwarf_version(&self) -> Option<u32> {
2856+
// Tentatively matches the DWARF version defaults as of rustc 1.62.
2857+
let target = self.get_target().ok()?;
2858+
if target.contains("android")
2859+
|| target.contains("apple")
2860+
|| target.contains("dragonfly")
2861+
|| target.contains("freebsd")
2862+
|| target.contains("netbsd")
2863+
|| target.contains("openbsd")
2864+
|| target.contains("windows-gnu")
2865+
{
2866+
Some(2)
2867+
} else if target.contains("linux") {
2868+
Some(4)
2869+
} else {
2870+
None
2871+
}
2872+
}
2873+
28512874
fn get_force_frame_pointer(&self) -> bool {
28522875
self.force_frame_pointer.unwrap_or_else(|| self.get_debug())
28532876
}

tests/test.rs

+20-5
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fn gnu_smoke() {
2020
test.cmd(0)
2121
.must_have("-O2")
2222
.must_have("foo.c")
23-
.must_not_have("-g")
23+
.must_not_have("-gdwarf-4")
2424
.must_have("-c")
2525
.must_have("-ffunction-sections")
2626
.must_have("-fdata-sections");
@@ -52,19 +52,34 @@ fn gnu_opt_level_s() {
5252
.must_not_have("-Oz");
5353
}
5454

55+
#[test]
56+
fn gnu_debug() {
57+
let test = Test::gnu();
58+
test.gcc().debug(true).file("foo.c").compile("foo");
59+
test.cmd(0).must_have("-gdwarf-4");
60+
61+
let test = Test::gnu();
62+
test.gcc()
63+
.target("x86_64-apple-darwin")
64+
.debug(true)
65+
.file("foo.c")
66+
.compile("foo");
67+
test.cmd(0).must_have("-gdwarf-2");
68+
}
69+
5570
#[test]
5671
fn gnu_debug_fp_auto() {
5772
let test = Test::gnu();
5873
test.gcc().debug(true).file("foo.c").compile("foo");
59-
test.cmd(0).must_have("-g");
74+
test.cmd(0).must_have("-gdwarf-4");
6075
test.cmd(0).must_have("-fno-omit-frame-pointer");
6176
}
6277

6378
#[test]
6479
fn gnu_debug_fp() {
6580
let test = Test::gnu();
6681
test.gcc().debug(true).file("foo.c").compile("foo");
67-
test.cmd(0).must_have("-g");
82+
test.cmd(0).must_have("-gdwarf-4");
6883
test.cmd(0).must_have("-fno-omit-frame-pointer");
6984
}
7085

@@ -78,7 +93,7 @@ fn gnu_debug_nofp() {
7893
.force_frame_pointer(false)
7994
.file("foo.c")
8095
.compile("foo");
81-
test.cmd(0).must_have("-g");
96+
test.cmd(0).must_have("-gdwarf-4");
8297
test.cmd(0).must_not_have("-fno-omit-frame-pointer");
8398

8499
let test = Test::gnu();
@@ -87,7 +102,7 @@ fn gnu_debug_nofp() {
87102
.debug(true)
88103
.file("foo.c")
89104
.compile("foo");
90-
test.cmd(0).must_have("-g");
105+
test.cmd(0).must_have("-gdwarf-4");
91106
test.cmd(0).must_not_have("-fno-omit-frame-pointer");
92107
}
93108

0 commit comments

Comments
 (0)