Merge pull request #205 from dtolnay/envrustc

Respect RUSTC environment variable if present
This commit is contained in:
David Tolnay 2023-12-26 10:17:40 -08:00 committed by GitHub
commit 6020de36ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -410,6 +410,9 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: &Coloring, outfile: &Path
} }
fn needs_rustc_bootstrap() -> bool { fn needs_rustc_bootstrap() -> bool {
let rustc = if let Some(rustc) = env::var_os("RUSTC") {
PathBuf::from(rustc)
} else {
let mut cmd = Command::new(cargo_binary()); let mut cmd = Command::new(cargo_binary());
cmd.arg("rustc"); cmd.arg("rustc");
cmd.arg("-Zunstable-options"); cmd.arg("-Zunstable-options");
@ -423,9 +426,10 @@ fn needs_rustc_bootstrap() -> bool {
let Ok(stdout) = str::from_utf8(&output.stdout) else { let Ok(stdout) = str::from_utf8(&output.stdout) else {
return true; return true;
}; };
let sysroot = Path::new(stdout.trim_end()); let sysroot = Path::new(stdout.trim_end());
let rustc = sysroot.join("bin").join("rustc"); sysroot.join("bin").join("rustc")
};
let mut cmd = Command::new(rustc); let mut cmd = Command::new(rustc);
cmd.arg("-Zunpretty=expanded"); cmd.arg("-Zunpretty=expanded");
cmd.arg("-"); cmd.arg("-");