We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28c498c commit c0b7e68Copy full SHA for c0b7e68
build_system/build_sysroot.rs
@@ -252,7 +252,7 @@ fn build_clif_sysroot_for_triple(
252
rustflags.push_str(&format!(" -Zcodegen-backend={}", cg_clif_dylib_path.to_str().unwrap()));
253
// Necessary for MinGW to find rsbegin.o and rsend.o
254
rustflags
255
- .push_str(&format!(" --sysroot={}", RTSTARTUP_SYSROOT.to_path(dirs).to_str().unwrap()));
+ .push_str(&format!(" --sysroot {}", RTSTARTUP_SYSROOT.to_path(dirs).to_str().unwrap()));
256
if channel == "release" {
257
rustflags.push_str(" -Zmir-opt-level=3");
258
}
0 commit comments