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.
Unpacked
1 parent 00ded39 commit b7c71a7Copy full SHA for b7c71a7
compiler/rustc_session/src/options.rs
@@ -1394,12 +1394,13 @@ pub mod parse {
1394
1395
pub(crate) fn parse_split_debuginfo(
1396
slot: &mut Option<SplitDebuginfo>,
1397
- v: Option<&str>,
+ _v: Option<&str>,
1398
) -> bool {
1399
- match v.and_then(|s| SplitDebuginfo::from_str(s).ok()) {
1400
- Some(e) => *slot = Some(e),
1401
- _ => return false,
1402
- }
+ *slot = Some(SplitDebuginfo::Unpacked);
+ // match v.and_then(|s| SplitDebuginfo::from_str(s).ok()) {
+ // Some(e) => *slot = Some(e),
+ // _ => return false,
1403
+ // }
1404
true
1405
}
1406
0 commit comments