Skip to content

Commit ad29c6e

Browse files
authored
Unrolled build for rust-lang#119582
Rollup merge of rust-lang#119582 - arlosi:bootstrap-vendor-remap, r=wesleywiser bootstrap: handle vendored sources when remapping crate paths rust-lang#115872 introduced a feature to add path remapping for crate dependencies, but only when they came from Cargo's registry cache, not a vendor directory. This caused builds that used remapped debuginfo and vendor directories to fail with: ``` std::fs::read_dir(registry_src) failed with No such file or directory (os error 2) ``` or (if the `registry/src` directory exists but is empty) ``` error: --remap-path-prefix must contain '=' between FROM and TO ``` Fixes rust-lang#117885 by explicitly supporting the `vendor` directory and adding it to `RUSTC_CARGO_REGISTRY_SRC_TO_REMAP`. Note that `bootstrap.py` already assumes that `./vendor` within the rust repo is the only supported vendoring location. r? `@pietroalbini`
2 parents 16fadb3 + 4b7e0a0 commit ad29c6e

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

src/bootstrap/src/core/builder.rs

+12-7
Original file line numberDiff line numberDiff line change
@@ -1799,15 +1799,20 @@ impl<'a> Builder<'a> {
17991799
}
18001800

18011801
if self.config.rust_remap_debuginfo {
1802-
// FIXME: handle vendored sources
1803-
let registry_src = t!(home::cargo_home()).join("registry").join("src");
18041802
let mut env_var = OsString::new();
1805-
for entry in t!(std::fs::read_dir(registry_src)) {
1806-
if !env_var.is_empty() {
1807-
env_var.push("\t");
1808-
}
1809-
env_var.push(t!(entry).path());
1803+
if self.config.vendor {
1804+
let vendor = self.build.src.join("vendor");
1805+
env_var.push(vendor);
18101806
env_var.push("=/rust/deps");
1807+
} else {
1808+
let registry_src = t!(home::cargo_home()).join("registry").join("src");
1809+
for entry in t!(std::fs::read_dir(registry_src)) {
1810+
if !env_var.is_empty() {
1811+
env_var.push("\t");
1812+
}
1813+
env_var.push(t!(entry).path());
1814+
env_var.push("=/rust/deps");
1815+
}
18111816
}
18121817
cargo.env("RUSTC_CARGO_REGISTRY_SRC_TO_REMAP", env_var);
18131818
}

0 commit comments

Comments
 (0)