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