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 090d5ea commit 5073c15Copy full SHA for 5073c15
src/bootstrap/src/core/build_steps/synthetic_targets.rs
@@ -59,6 +59,7 @@ fn create_synthetic_target(
59
let mut cmd = Command::new(builder.rustc(compiler));
60
cmd.arg("--target").arg(base.rustc_target_arg());
61
cmd.args(["-Zunstable-options", "--print", "target-spec-json"]);
62
+ cmd.env("RUSTC_BOOTSTRAP", "1");
63
cmd.stdout(Stdio::piped());
64
65
let output = cmd.spawn().unwrap().wait_with_output().unwrap();
0 commit comments