Skip to content

Commit 76b0a8a

Browse files
committed
rustc is rustc.exe on windows
1 parent c0e326d commit 76b0a8a

File tree

4 files changed

+19
-11
lines changed

4 files changed

+19
-11
lines changed

src/cargo/ops/cargo_compile.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,9 @@ pub fn compile_ws<'a>(
260260
bail!("jobs must be at least 1")
261261
}
262262

263-
let rustc_info_cache = ws.target_dir().join(".rustc_info.json").into_path_unlocked();
263+
let rustc_info_cache = ws.target_dir()
264+
.join(".rustc_info.json")
265+
.into_path_unlocked();
264266
let mut build_config = BuildConfig::new(config, jobs, &target, Some(rustc_info_cache))?;
265267
build_config.release = release;
266268
build_config.test = mode == CompileMode::Test || mode == CompileMode::Bench;

src/cargo/util/config.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,11 @@ impl Config {
171171
Rustc::new(
172172
self.get_tool("rustc")?,
173173
self.maybe_get_tool("rustc_wrapper")?,
174-
&self.home().join("bin").join("rustc").into_path_unlocked(),
174+
&self.home()
175+
.join("bin")
176+
.join("rustc")
177+
.into_path_unlocked()
178+
.with_extension(env::consts::EXE_EXTENSION),
175179
if self.cache_rustc_info {
176180
cache_location
177181
} else {

src/cargo/util/paths.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,7 @@ pub fn append(path: &Path, contents: &[u8]) -> CargoResult<()> {
158158
}
159159

160160
pub fn mtime(path: &Path) -> CargoResult<FileTime> {
161-
let meta =
162-
fs::metadata(path).chain_err(|| format!("failed to stat `{}`", path.display()))?;
161+
let meta = fs::metadata(path).chain_err(|| format!("failed to stat `{}`", path.display()))?;
163162
Ok(FileTime::from_last_modification_time(&meta))
164163
}
165164

src/cargo/util/rustc.rs

+10-7
Original file line numberDiff line numberDiff line change
@@ -219,21 +219,24 @@ fn rustc_fingerprint(path: &Path, rustup_rustc: &Path) -> CargoResult<u64> {
219219
// If we don't see rustup env vars, but it looks like the compiler
220220
// is managed by rustup, we conservatively bail out.
221221
let maybe_rustup = rustup_rustc == path;
222-
match (maybe_rustup, env::var("RUSTUP_HOME"), env::var("RUSTUP_TOOLCHAIN")) {
222+
match (
223+
maybe_rustup,
224+
env::var("RUSTUP_HOME"),
225+
env::var("RUSTUP_TOOLCHAIN"),
226+
) {
223227
(_, Ok(rustup_home), Ok(rustup_toolchain)) => {
224228
debug!("adding rustup info to rustc fingerprint");
225229
rustup_toolchain.hash(&mut hasher);
226230
rustup_home.hash(&mut hasher);
227-
let rustup_rustc = Path::new(&rustup_home)
231+
let real_rustc = Path::new(&rustup_home)
228232
.join("toolchains")
229233
.join(rustup_toolchain)
230234
.join("bin")
231-
.join("rustc");
232-
paths::mtime(&rustup_rustc)?.hash(&mut hasher);
233-
}
234-
(true, _, _) => {
235-
bail!("probably rustup rustc, but without rustup's env vars")
235+
.join("rustc")
236+
.with_extension(env::consts::EXE_EXTENSION);
237+
paths::mtime(&real_rustc)?.hash(&mut hasher);
236238
}
239+
(true, _, _) => bail!("probably rustup rustc, but without rustup's env vars"),
237240
_ => (),
238241
}
239242

0 commit comments

Comments
 (0)