mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 21:37:47 +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
|
@ -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("-");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue