Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4db00fe

Browse files
committedMay 13, 2024
Use an helper to move the files
In case the source is not in the same filesystem.
1 parent b71fa82 commit 4db00fe

File tree

4 files changed

+24
-7
lines changed

4 files changed

+24
-7
lines changed
 

‎src/bootstrap/src/core/build_steps/dist.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ use crate::core::build_steps::tool::{self, Tool};
2626
use crate::core::builder::{Builder, Kind, RunConfig, ShouldRun, Step};
2727
use crate::core::config::TargetSelection;
2828
use crate::utils::channel::{self, Info};
29-
use crate::utils::helpers::{exe, is_dylib, output, t, target_supports_cranelift_backend, timeit};
29+
use crate::utils::helpers::{
30+
exe, is_dylib, move_file, output, t, target_supports_cranelift_backend, timeit,
31+
};
3032
use crate::utils::tarball::{GeneratedTarball, OverlayKind, Tarball};
3133
use crate::{Compiler, DependencyType, Mode, LLVM_TOOLS};
3234

@@ -2024,7 +2026,7 @@ impl Step for Extended {
20242026
builder.run(&mut cmd);
20252027

20262028
if !builder.config.dry_run() {
2027-
t!(fs::rename(exe.join(&filename), distdir(builder).join(&filename)));
2029+
t!(move_file(exe.join(&filename), distdir(builder).join(&filename)));
20282030
}
20292031
}
20302032
}

‎src/bootstrap/src/core/download.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use build_helper::ci::CiEnv;
1212
use build_helper::stage0_parser::VersionMetadata;
1313
use xz2::bufread::XzDecoder;
1414

15-
use crate::utils::helpers::{check_run, exe, program_out_of_date};
15+
use crate::utils::helpers::{check_run, exe, move_file, program_out_of_date};
1616
use crate::{core::build_steps::llvm::detect_llvm_sha, utils::helpers::hex_encode};
1717
use crate::{t, Config};
1818

@@ -209,7 +209,7 @@ impl Config {
209209
None => panic!("no protocol in {url}"),
210210
}
211211
t!(
212-
std::fs::rename(&tempfile, dest_path),
212+
move_file(&tempfile, dest_path),
213213
format!("failed to rename {tempfile:?} to {dest_path:?}")
214214
);
215215
}
@@ -313,7 +313,7 @@ impl Config {
313313
if src_path.is_dir() && dst_path.exists() {
314314
continue;
315315
}
316-
t!(fs::rename(src_path, dst_path));
316+
t!(move_file(src_path, dst_path));
317317
}
318318
let dst_dir = dst.join(directory_prefix);
319319
if dst_dir.exists() {

‎src/bootstrap/src/utils/helpers.rs

+15
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,21 @@ pub fn symlink_dir(config: &Config, original: &Path, link: &Path) -> io::Result<
150150
}
151151
}
152152

153+
/// Rename a file if from and to are in the same filesystem or
154+
/// copy and remove the file otherwise
155+
pub fn move_file<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> io::Result<()> {
156+
match fs::rename(&from, &to) {
157+
// FIXME: Once `ErrorKind::CrossesDevices` is stabilized use
158+
// if e.kind() == io::ErrorKind::CrossesDevices {
159+
#[cfg(unix)]
160+
Err(e) if e.raw_os_error() == Some(libc::EXDEV) => {
161+
std::fs::copy(&from, &to)?;
162+
std::fs::remove_file(&from)
163+
}
164+
r => r,
165+
}
166+
}
167+
153168
pub fn forcing_clang_based_tests() -> bool {
154169
if let Some(var) = env::var_os("RUSTBUILD_FORCE_CLANG_BASED_TESTS") {
155170
match &var.to_string_lossy().to_lowercase()[..] {

‎src/bootstrap/src/utils/tarball.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use std::{
1313
use crate::core::builder::Builder;
1414
use crate::core::{build_steps::dist::distdir, builder::Kind};
1515
use crate::utils::channel;
16-
use crate::utils::helpers::t;
16+
use crate::utils::helpers::{move_file, t};
1717

1818
#[derive(Copy, Clone)]
1919
pub(crate) enum OverlayKind {
@@ -284,7 +284,7 @@ impl<'a> Tarball<'a> {
284284
// name, not "image". We rename the image directory just before passing
285285
// into rust-installer.
286286
let dest = self.temp_dir.join(self.package_name());
287-
t!(std::fs::rename(&self.image_dir, &dest));
287+
t!(move_file(&self.image_dir, &dest));
288288

289289
self.run(|this, cmd| {
290290
let distdir = distdir(this.builder);

0 commit comments

Comments
 (0)
Failed to load comments.