Skip to content

Commit aca2f88

Browse files
committed
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 #106592
1 parent 0442fba commit aca2f88

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
@@ -1570,7 +1570,7 @@ options! {
15701570
/// o/w tests have closure@path
15711571
span_free_formats: bool = (false, parse_bool, [UNTRACKED],
15721572
"exclude spans when debug-printing compiler state (default: no)"),
1573-
split_dwarf_inlining: bool = (true, parse_bool, [TRACKED],
1573+
split_dwarf_inlining: bool = (false, parse_bool, [TRACKED],
15741574
"provide minimal debug info in the object/executable to facilitate online \
15751575
symbolication/stack traces in the absence of .dwo/.dwp files when using Split DWARF"),
15761576
split_dwarf_kind: SplitDwarfKind = (SplitDwarfKind::Split, parse_split_dwarf_kind, [TRACKED],

0 commit comments

Comments
 (0)