We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--backend
1 parent fc2d1ed commit ba52317Copy full SHA for ba52317
build_system/src/config.rs
@@ -398,6 +398,8 @@ impl ConfigInfo {
398
.display()
399
.to_string();
400
if let Some(backend) = &self.backend {
401
+ // This option is only used in the rust compiler testsuite. The sysroot is handled
402
+ // by its build system directly so no need to set it ourselves.
403
rustflags.push(format!("-Zcodegen-backend={}", backend));
404
} else {
405
rustflags.extend_from_slice(&[
0 commit comments