We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28950f3 commit 7a16015Copy full SHA for 7a16015
src/debuginfo/object.rs
@@ -39,7 +39,13 @@ impl WriteDebugInfo for ObjectProduct {
39
let section_id = self.object.add_section(
40
segment,
41
name,
42
- if id == SectionId::EhFrame { SectionKind::ReadOnlyData } else { SectionKind::Debug },
+ if id == SectionId::DebugStr {
43
+ SectionKind::DebugString
44
+ } else if id == SectionId::EhFrame {
45
+ SectionKind::ReadOnlyData
46
+ } else {
47
+ SectionKind::Debug
48
+ },
49
);
50
self.object
51
.section_mut(section_id)
0 commit comments