Skip to content

Commit b7c71a7

Browse files
committed
Override split debuginfo to be Unpacked
1 parent 00ded39 commit b7c71a7

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

compiler/rustc_session/src/options.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1394,12 +1394,13 @@ pub mod parse {
13941394

13951395
pub(crate) fn parse_split_debuginfo(
13961396
slot: &mut Option<SplitDebuginfo>,
1397-
v: Option<&str>,
1397+
_v: Option<&str>,
13981398
) -> bool {
1399-
match v.and_then(|s| SplitDebuginfo::from_str(s).ok()) {
1400-
Some(e) => *slot = Some(e),
1401-
_ => return false,
1402-
}
1399+
*slot = Some(SplitDebuginfo::Unpacked);
1400+
// match v.and_then(|s| SplitDebuginfo::from_str(s).ok()) {
1401+
// Some(e) => *slot = Some(e),
1402+
// _ => return false,
1403+
// }
14031404
true
14041405
}
14051406

0 commit comments

Comments
 (0)