Skip to content

Commit 278eaf5

Browse files
committed
Auto merge of #115872 - ferrocene:pa-remap-cargo-home, r=clubby789
Remap Cargo dependencies to /rust/deps :warning: **This doesn't affect user-compiled programs, it only affects building the Rust compiler itself.** :warning: Right now, `rust.remap-debuginfo = true` doesn't completely remap all paths: while LLVM and rustc sources are properly remapped (respectively to `/rust/llvm` and `/rust/$commit`), Cargo dependencies still use absolute paths from the Cargo home. This never affected builds from CI much, because `CARGO_HOME=/cargo` in CI, so users see paths like this included in the precompiled binaries and libraries: ``` /cargo/registry/src/index.crates.io-6f17d22bba15001f/gimli-0.26.2/src/read/line.rs ``` Builds outside CI don't have remapping though, and it's confusing that the config flag doesn't fully do what it advertises. This PR fixes it by adding remapping for dependencies too. *All registries's* source directory are remapped to `/rust/deps`, to account for multiple registries being able to contain crates.io crates (sparse index vs git, and source replacement mirrors). This results in paths like this being included: ``` /rust/deps/gimli-0.26.2/src/read/line.rs ```
2 parents 7ac9a3a + 85c0ce2 commit 278eaf5

File tree

4 files changed

+33
-1
lines changed

4 files changed

+33
-1
lines changed

src/bootstrap/Cargo.lock

+10
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ dependencies = [
5050
"fd-lock",
5151
"filetime",
5252
"hex",
53+
"home",
5354
"ignore",
5455
"junction",
5556
"libc",
@@ -350,6 +351,15 @@ version = "0.4.3"
350351
source = "registry+https://github.com/rust-lang/crates.io-index"
351352
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
352353

354+
[[package]]
355+
name = "home"
356+
version = "0.5.4"
357+
source = "registry+https://github.com/rust-lang/crates.io-index"
358+
checksum = "747309b4b440c06d57b0b25f2aee03ee9b5e5397d288c60e21fc709bb98a7408"
359+
dependencies = [
360+
"winapi",
361+
]
362+
353363
[[package]]
354364
name = "ignore"
355365
version = "0.4.18"

src/bootstrap/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ clap_complete = "4.4.3"
4040
cmake = "0.1.38"
4141
filetime = "0.2"
4242
hex = "0.4"
43+
home = "0.5.4"
4344
ignore = "0.4.10"
4445
libc = "0.2"
4546
object = { version = "0.32.0", default-features = false, features = ["archive", "coff", "read_core", "unaligned"] }

src/bootstrap/src/bin/rustc.rs

+7
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,13 @@ fn main() {
124124
if let Ok(map) = env::var("RUSTC_DEBUGINFO_MAP") {
125125
cmd.arg("--remap-path-prefix").arg(&map);
126126
}
127+
// The remap flags for Cargo registry sources need to be passed after the remapping for the
128+
// Rust source code directory, to handle cases when $CARGO_HOME is inside the source directory.
129+
if let Ok(maps) = env::var("RUSTC_CARGO_REGISTRY_SRC_TO_REMAP") {
130+
for map in maps.split('\t') {
131+
cmd.arg("--remap-path-prefix").arg(map);
132+
}
133+
}
127134

128135
// Force all crates compiled by this compiler to (a) be unstable and (b)
129136
// allow the `rustc_private` feature to link to other unstable crates

src/bootstrap/src/core/builder.rs

+15-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::any::{type_name, Any};
22
use std::cell::{Cell, RefCell};
33
use std::collections::BTreeSet;
44
use std::env;
5-
use std::ffi::OsStr;
5+
use std::ffi::{OsStr, OsString};
66
use std::fmt::{Debug, Write};
77
use std::fs::{self, File};
88
use std::hash::Hash;
@@ -1767,6 +1767,20 @@ impl<'a> Builder<'a> {
17671767
cargo.env("CFG_VIRTUAL_RUST_SOURCE_BASE_DIR", map_to);
17681768
}
17691769

1770+
if self.config.rust_remap_debuginfo {
1771+
// FIXME: handle vendored sources
1772+
let registry_src = t!(home::cargo_home()).join("registry").join("src");
1773+
let mut env_var = OsString::new();
1774+
for entry in t!(std::fs::read_dir(registry_src)) {
1775+
if !env_var.is_empty() {
1776+
env_var.push("\t");
1777+
}
1778+
env_var.push(t!(entry).path());
1779+
env_var.push("=/rust/deps");
1780+
}
1781+
cargo.env("RUSTC_CARGO_REGISTRY_SRC_TO_REMAP", env_var);
1782+
}
1783+
17701784
// Enable usage of unstable features
17711785
cargo.env("RUSTC_BOOTSTRAP", "1");
17721786
self.add_rust_test_threads(&mut cargo);

0 commit comments

Comments
 (0)