We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RUSTC_WRAPPER
CARGO_RUSTC_WRAPPER
1 parent f0cc202 commit ef3493bCopy full SHA for ef3493b
build.rs
@@ -50,7 +50,7 @@ fn can_compile<T: AsRef<str>>(test: T) -> bool {
50
let rustc = var("RUSTC").unwrap();
51
let target = var("TARGET").unwrap();
52
53
- let mut cmd = if let Ok(wrapper) = var("CARGO_RUSTC_WRAPPER") {
+ let mut cmd = if let Ok(wrapper) = var("RUSTC_WRAPPER") {
54
let mut cmd = std::process::Command::new(wrapper);
55
// The wrapper's first argument is supposed to be the path to rustc.
56
cmd.arg(rustc);
0 commit comments