Skip to content

Commit 1a86934

Browse files
authored
Rollup merge of rust-lang#106709 - khuey:disable_split_dwarf_inlining_by_default, r=davidtwco
Disable "split dwarf inlining" by default. This matches clang's behavior and makes split-debuginfo behave as expected (i.e. actually split the debug info). Fixes rust-lang#106592
2 parents aa91217 + aca2f88 commit 1a86934

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_session/src/options.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1572,7 +1572,7 @@ options! {
15721572
/// o/w tests have closure@path
15731573
span_free_formats: bool = (false, parse_bool, [UNTRACKED],
15741574
"exclude spans when debug-printing compiler state (default: no)"),
1575-
split_dwarf_inlining: bool = (true, parse_bool, [TRACKED],
1575+
split_dwarf_inlining: bool = (false, parse_bool, [TRACKED],
15761576
"provide minimal debug info in the object/executable to facilitate online \
15771577
symbolication/stack traces in the absence of .dwo/.dwp files when using Split DWARF"),
15781578
split_dwarf_kind: SplitDwarfKind = (SplitDwarfKind::Split, parse_split_dwarf_kind, [TRACKED],

0 commit comments

Comments
 (0)