Skip to content

Commit da179f9

Browse files
committed
kbuild: rust: use -Zdwarf-version to support DWARFv5
Rust 1.64.0 introduced (unstable) support for the `-Zdwarf-version` flag, which allows to select DWARFv5, thus use it. Link: rust-lang/rust#103057 Link: rust-lang/rust#98350 Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Miguel Ojeda <[email protected]>
1 parent b481dd8 commit da179f9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

scripts/Makefile.debug

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ endif
1717
DEBUG_CFLAGS += $(debug-flags-y)
1818
KBUILD_AFLAGS += $(debug-flags-y)
1919

20+
ifdef CONFIG_DEBUG_INFO_DWARF4
21+
DEBUG_RUSTFLAGS += -Zdwarf-version=4
22+
else ifdef CONFIG_DEBUG_INFO_DWARF5
23+
DEBUG_RUSTFLAGS += -Zdwarf-version=5
24+
endif
25+
2026
ifdef CONFIG_DEBUG_INFO_REDUCED
2127
DEBUG_CFLAGS += -fno-var-tracking
2228
DEBUG_RUSTFLAGS += -Cdebuginfo=1

0 commit comments

Comments
 (0)