mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 13:27:37 +03:00
Merge pull request #205 from dtolnay/envrustc
Respect RUSTC environment variable if present
This commit is contained in:
commit
6020de36ce
1 changed files with 18 additions and 14 deletions
32
src/main.rs
32
src/main.rs
|
@ -410,22 +410,26 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: &Coloring, outfile: &Path
|
||||||
}
|
}
|
||||||
|
|
||||||
fn needs_rustc_bootstrap() -> bool {
|
fn needs_rustc_bootstrap() -> bool {
|
||||||
let mut cmd = Command::new(cargo_binary());
|
let rustc = if let Some(rustc) = env::var_os("RUSTC") {
|
||||||
cmd.arg("rustc");
|
PathBuf::from(rustc)
|
||||||
cmd.arg("-Zunstable-options");
|
} else {
|
||||||
cmd.arg("--print=sysroot");
|
let mut cmd = Command::new(cargo_binary());
|
||||||
cmd.env("RUSTC_BOOTSTRAP", "1");
|
cmd.arg("rustc");
|
||||||
cmd.stdin(Stdio::null());
|
cmd.arg("-Zunstable-options");
|
||||||
cmd.stderr(Stdio::null());
|
cmd.arg("--print=sysroot");
|
||||||
let Ok(output) = cmd.output() else {
|
cmd.env("RUSTC_BOOTSTRAP", "1");
|
||||||
return true;
|
cmd.stdin(Stdio::null());
|
||||||
};
|
cmd.stderr(Stdio::null());
|
||||||
let Ok(stdout) = str::from_utf8(&output.stdout) else {
|
let Ok(output) = cmd.output() else {
|
||||||
return true;
|
return true;
|
||||||
|
};
|
||||||
|
let Ok(stdout) = str::from_utf8(&output.stdout) else {
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
let sysroot = Path::new(stdout.trim_end());
|
||||||
|
sysroot.join("bin").join("rustc")
|
||||||
};
|
};
|
||||||
|
|
||||||
let sysroot = Path::new(stdout.trim_end());
|
|
||||||
let 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("-");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue