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 521d937 commit b773282Copy full SHA for b773282
build_system/build_sysroot.rs
@@ -240,7 +240,7 @@ fn build_clif_sysroot_for_triple(
240
rustflags.push_str(&format!(" -Zcodegen-backend={}", cg_clif_dylib_path.to_str().unwrap()));
241
// Necessary for MinGW to find rsbegin.o and rsend.o
242
rustflags
243
- .push_str(&format!(" --sysroot={}", RTSTARTUP_SYSROOT.to_path(dirs).to_str().unwrap()));
+ .push_str(&format!(" --sysroot {}", RTSTARTUP_SYSROOT.to_path(dirs).to_str().unwrap()));
244
if channel == "release" {
245
rustflags.push_str(" -Zmir-opt-level=3");
246
}
0 commit comments