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.
1 parent b2a6602 commit 61c3458Copy full SHA for 61c3458
compiler/rustc_codegen_cranelift/build_system/build_sysroot.rs
@@ -52,7 +52,8 @@ pub(crate) fn build_sysroot(
52
.arg(dirs.source_dir.join("scripts").join(format!("{wrapper}.rs")))
53
.arg("-o")
54
.arg(&wrapper_path)
55
- .arg("-Cstrip=debuginfo");
+ .arg("-Cstrip=debuginfo")
56
+ .arg("--check-cfg=cfg(support_panic_unwind)");
57
if panic_unwind_support {
58
build_cargo_wrapper_cmd.arg("--cfg").arg("support_panic_unwind");
59
}
0 commit comments