Skip to content

Commit a80d69a

Browse files
committedMay 31, 2023
Fix x test --stage 2 core when download-rustc is enabled
This works by building std from source unconditionally instead of downloading it, for library tests only. This was somewhat complicated because of the following requirements: 1. Unconditionally downloading libstd breaks `x test std`, because `coretests` requires the std loaded from the sysroot to match the std that's currently being tested. 2. Unconditionally rebuilding libstd breaks `x test ui-fulldeps librustdoc`, because anything loading `rustc_private` needs to use the same libstd that rustc was built with. Break the knot by introducing a new `stage2-test-sysroot`, used only for testing `std` itself. This holds a freshly compiled std, while `stage2` and `ci-rustc-sysroot` still hold the downloaded std. This also extends the existing `cp_filtered` in Sysroot to apply to the `rust-std` component, not just the `rustc-dev` component.
1 parent 2f0a266 commit a80d69a

File tree

4 files changed

+149
-40
lines changed

4 files changed

+149
-40
lines changed
 

‎src/bootstrap/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,7 @@ impl<'a> Builder<'a> {
992992
}
993993

994994
pub fn sysroot(&self, compiler: Compiler) -> Interned<PathBuf> {
995-
self.ensure(compile::Sysroot { compiler })
995+
self.ensure(compile::Sysroot::new(compiler))
996996
}
997997

998998
/// Returns the libdir where the standard library and other artifacts are

‎src/bootstrap/compile.rs

+92-28
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,18 @@ pub struct Std {
4040
///
4141
/// This shouldn't be used from other steps; see the comment on [`Rustc`].
4242
crates: Interned<Vec<String>>,
43+
/// When using download-rustc, we need to use a new build of `std` for running unit tests of Std itself,
44+
/// but we need to use the downloaded copy of std for linking to rustdoc. Allow this to be overriden by `builder.ensure` from other steps.
45+
force_recompile: bool,
4346
}
4447

4548
impl Std {
4649
pub fn new(compiler: Compiler, target: TargetSelection) -> Self {
47-
Self { target, compiler, crates: Default::default() }
50+
Self { target, compiler, crates: Default::default(), force_recompile: false }
51+
}
52+
53+
pub fn force_recompile(compiler: Compiler, target: TargetSelection) -> Self {
54+
Self { target, compiler, crates: Default::default(), force_recompile: true }
4855
}
4956
}
5057

@@ -77,6 +84,7 @@ impl Step for Std {
7784
compiler: run.builder.compiler(run.builder.top_stage, run.build_triple()),
7885
target: run.target,
7986
crates: make_run_crates(&run, "library"),
87+
force_recompile: false,
8088
});
8189
}
8290

@@ -89,11 +97,20 @@ impl Step for Std {
8997
let target = self.target;
9098
let compiler = self.compiler;
9199

92-
// When using `download-rustc`, we already have artifacts for the host available
93-
// (they were copied in `impl Step for Sysroot`). Don't recompile them.
94-
// NOTE: the ABI of the beta compiler is different from the ABI of the downloaded compiler,
95-
// so its artifacts can't be reused.
96-
if builder.download_rustc() && compiler.stage != 0 && target == builder.build.build {
100+
// When using `download-rustc`, we already have artifacts for the host available. Don't
101+
// recompile them.
102+
if builder.download_rustc() && target == builder.build.build
103+
// NOTE: the beta compiler may generate different artifacts than the downloaded compiler, so
104+
// its artifacts can't be reused.
105+
&& compiler.stage != 0
106+
// This check is specific to testing std itself; see `test::Std` for more details.
107+
&& !self.force_recompile
108+
{
109+
cp_rustc_component_to_ci_sysroot(
110+
builder,
111+
compiler,
112+
builder.config.ci_rust_std_contents(),
113+
);
97114
return;
98115
}
99116

@@ -428,6 +445,8 @@ struct StdLink {
428445
pub target: TargetSelection,
429446
/// Not actually used; only present to make sure the cache invalidation is correct.
430447
crates: Interned<Vec<String>>,
448+
/// See [`Std::force_recompile`].
449+
force_recompile: bool,
431450
}
432451

433452
impl StdLink {
@@ -437,6 +456,7 @@ impl StdLink {
437456
target_compiler: std.compiler,
438457
target: std.target,
439458
crates: std.crates,
459+
force_recompile: std.force_recompile,
440460
}
441461
}
442462
}
@@ -460,8 +480,24 @@ impl Step for StdLink {
460480
let compiler = self.compiler;
461481
let target_compiler = self.target_compiler;
462482
let target = self.target;
463-
let libdir = builder.sysroot_libdir(target_compiler, target);
464-
let hostdir = builder.sysroot_libdir(target_compiler, compiler.host);
483+
484+
// NOTE: intentionally does *not* check `target == builder.build` to avoid having to add the same check in `test::Crate`.
485+
let (libdir, hostdir) = if self.force_recompile && builder.download_rustc() {
486+
// NOTE: copies part of `sysroot_libdir` to avoid having to add a new `force_recompile` argument there too
487+
let lib = builder.sysroot_libdir_relative(self.compiler);
488+
let sysroot = builder.ensure(crate::compile::Sysroot {
489+
compiler: self.compiler,
490+
force_recompile: self.force_recompile,
491+
});
492+
let libdir = sysroot.join(lib).join("rustlib").join(target.triple).join("lib");
493+
let hostdir = sysroot.join(lib).join("rustlib").join(compiler.host.triple).join("lib");
494+
(INTERNER.intern_path(libdir), INTERNER.intern_path(hostdir))
495+
} else {
496+
let libdir = builder.sysroot_libdir(target_compiler, target);
497+
let hostdir = builder.sysroot_libdir(target_compiler, compiler.host);
498+
(libdir, hostdir)
499+
};
500+
465501
add_to_sysroot(builder, &libdir, &hostdir, &libstd_stamp(builder, compiler, target));
466502
}
467503
}
@@ -594,6 +630,25 @@ impl Step for StartupObjects {
594630
}
595631
}
596632

633+
fn cp_rustc_component_to_ci_sysroot(
634+
builder: &Builder<'_>,
635+
compiler: Compiler,
636+
contents: Vec<String>,
637+
) {
638+
let sysroot = builder.ensure(Sysroot { compiler, force_recompile: false });
639+
640+
let ci_rustc_dir = builder.out.join(&*builder.build.build.triple).join("ci-rustc");
641+
for file in contents {
642+
let src = ci_rustc_dir.join(&file);
643+
let dst = sysroot.join(file);
644+
if src.is_dir() {
645+
t!(fs::create_dir_all(dst));
646+
} else {
647+
builder.copy(&src, &dst);
648+
}
649+
}
650+
}
651+
597652
#[derive(Debug, PartialOrd, Ord, Copy, Clone, PartialEq, Eq, Hash)]
598653
pub struct Rustc {
599654
pub target: TargetSelection,
@@ -653,18 +708,11 @@ impl Step for Rustc {
653708
if builder.download_rustc() && compiler.stage != 0 {
654709
// Copy the existing artifacts instead of rebuilding them.
655710
// NOTE: this path is only taken for tools linking to rustc-dev (including ui-fulldeps tests).
656-
let sysroot = builder.ensure(Sysroot { compiler });
657-
658-
let ci_rustc_dir = builder.out.join(&*builder.build.build.triple).join("ci-rustc");
659-
for file in builder.config.rustc_dev_contents() {
660-
let src = ci_rustc_dir.join(&file);
661-
let dst = sysroot.join(file);
662-
if src.is_dir() {
663-
t!(fs::create_dir_all(dst));
664-
} else {
665-
builder.copy(&src, &dst);
666-
}
667-
}
711+
cp_rustc_component_to_ci_sysroot(
712+
builder,
713+
compiler,
714+
builder.config.ci_rustc_dev_contents(),
715+
);
668716
return;
669717
}
670718

@@ -1225,6 +1273,14 @@ pub fn compiler_file(
12251273
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
12261274
pub struct Sysroot {
12271275
pub compiler: Compiler,
1276+
/// See [`Std::force_recompile`].
1277+
force_recompile: bool,
1278+
}
1279+
1280+
impl Sysroot {
1281+
pub(crate) fn new(compiler: Compiler) -> Self {
1282+
Sysroot { compiler, force_recompile: false }
1283+
}
12281284
}
12291285

12301286
impl Step for Sysroot {
@@ -1247,6 +1303,8 @@ impl Step for Sysroot {
12471303
let sysroot_dir = |stage| {
12481304
if stage == 0 {
12491305
host_dir.join("stage0-sysroot")
1306+
} else if self.force_recompile && stage == compiler.stage {
1307+
host_dir.join(format!("stage{stage}-test-sysroot"))
12501308
} else if builder.download_rustc() && compiler.stage != builder.top_stage {
12511309
host_dir.join("ci-rustc-sysroot")
12521310
} else {
@@ -1286,14 +1344,19 @@ impl Step for Sysroot {
12861344
// 2. The sysroot is deleted and recreated between each invocation, so running `x test
12871345
// ui-fulldeps && x test ui` can't cause failures.
12881346
let mut filtered_files = Vec::new();
1289-
// Don't trim directories or files that aren't loaded per-target; they can't cause conflicts.
1290-
let suffix = format!("lib/rustlib/{}/lib", compiler.host);
1291-
for path in builder.config.rustc_dev_contents() {
1292-
let path = Path::new(&path);
1293-
if path.parent().map_or(false, |parent| parent.ends_with(&suffix)) {
1294-
filtered_files.push(path.file_name().unwrap().to_owned());
1347+
let mut add_filtered_files = |suffix, contents| {
1348+
for path in contents {
1349+
let path = Path::new(&path);
1350+
if path.parent().map_or(false, |parent| parent.ends_with(&suffix)) {
1351+
filtered_files.push(path.file_name().unwrap().to_owned());
1352+
}
12951353
}
1296-
}
1354+
};
1355+
let suffix = format!("lib/rustlib/{}/lib", compiler.host);
1356+
add_filtered_files(suffix.as_str(), builder.config.ci_rustc_dev_contents());
1357+
// NOTE: we can't copy std eagerly because `stage2-test-sysroot` needs to have only the
1358+
// newly compiled std, not the downloaded std.
1359+
add_filtered_files("lib", builder.config.ci_rust_std_contents());
12971360

12981361
let filtered_extensions = [OsStr::new("rmeta"), OsStr::new("rlib"), OsStr::new("so")];
12991362
let ci_rustc_dir = builder.ci_rustc_dir(builder.config.build);
@@ -1411,7 +1474,8 @@ impl Step for Assemble {
14111474

14121475
// If we're downloading a compiler from CI, we can use the same compiler for all stages other than 0.
14131476
if builder.download_rustc() {
1414-
let sysroot = builder.ensure(Sysroot { compiler: target_compiler });
1477+
let sysroot =
1478+
builder.ensure(Sysroot { compiler: target_compiler, force_recompile: false });
14151479
// Ensure that `libLLVM.so` ends up in the newly created target directory,
14161480
// so that tools using `rustc_private` can use it.
14171481
dist::maybe_install_llvm_target(builder, target_compiler.host, &sysroot);

‎src/bootstrap/download.rs

+25-8
Original file line numberDiff line numberDiff line change
@@ -270,11 +270,8 @@ impl Config {
270270
// `compile::Sysroot` needs to know the contents of the `rustc-dev` tarball to avoid adding
271271
// it to the sysroot unless it was explicitly requested. But parsing the 100 MB tarball is slow.
272272
// Cache the entries when we extract it so we only have to read it once.
273-
let mut recorded_entries = if dst.ends_with("ci-rustc") && pattern == "rustc-dev" {
274-
Some(BufWriter::new(t!(File::create(dst.join(".rustc-dev-contents")))))
275-
} else {
276-
None
277-
};
273+
let mut recorded_entries =
274+
if dst.ends_with("ci-rustc") { recorded_entries(dst, pattern) } else { None };
278275

279276
for member in t!(tar.entries()) {
280277
let mut member = t!(member);
@@ -331,6 +328,17 @@ impl Config {
331328
}
332329
}
333330

331+
fn recorded_entries(dst: &Path, pattern: &str) -> Option<BufWriter<File>> {
332+
let name = if pattern == "rustc-dev" {
333+
".rustc-dev-contents"
334+
} else if pattern.starts_with("rust-std") {
335+
".rust-std-contents"
336+
} else {
337+
return None;
338+
};
339+
Some(BufWriter::new(t!(File::create(dst.join(name)))))
340+
}
341+
334342
enum DownloadSource {
335343
CI,
336344
Dist,
@@ -381,11 +389,20 @@ impl Config {
381389
Some(rustfmt_path)
382390
}
383391

384-
pub(crate) fn rustc_dev_contents(&self) -> Vec<String> {
392+
pub(crate) fn ci_rust_std_contents(&self) -> Vec<String> {
393+
self.ci_component_contents(".rust-std-contents")
394+
}
395+
396+
pub(crate) fn ci_rustc_dev_contents(&self) -> Vec<String> {
397+
self.ci_component_contents(".rustc-dev-contents")
398+
}
399+
400+
fn ci_component_contents(&self, stamp_file: &str) -> Vec<String> {
385401
assert!(self.download_rustc());
386402
let ci_rustc_dir = self.out.join(&*self.build.triple).join("ci-rustc");
387-
let rustc_dev_contents_file = t!(File::open(ci_rustc_dir.join(".rustc-dev-contents")));
388-
t!(BufReader::new(rustc_dev_contents_file).lines().collect())
403+
let stamp_file = ci_rustc_dir.join(stamp_file);
404+
let contents_file = t!(File::open(&stamp_file), stamp_file.display().to_string());
405+
t!(BufReader::new(contents_file).lines().collect())
389406
}
390407

391408
pub(crate) fn download_ci_rustc(&self, commit: &str) {

‎src/bootstrap/test.rs

+31-3
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,13 @@ impl Step for BookTest {
17771777
/// This uses the `rustdoc` that sits next to `compiler`.
17781778
fn run(self, builder: &Builder<'_>) {
17791779
let host = self.compiler.host;
1780-
let _guard = builder.msg(Kind::Test, self.compiler.stage, &format!("book {}", self.name), host, host);
1780+
let _guard = builder.msg(
1781+
Kind::Test,
1782+
self.compiler.stage,
1783+
&format!("book {}", self.name),
1784+
host,
1785+
host,
1786+
);
17811787
// External docs are different from local because:
17821788
// - Some books need pre-processing by mdbook before being tested.
17831789
// - They need to save their state to toolstate.
@@ -2202,7 +2208,8 @@ impl Step for Crate {
22022208
let target = self.target;
22032209
let mode = self.mode;
22042210

2205-
builder.ensure(compile::Std::new(compiler, target));
2211+
// See [field@compile::Std::force_recompile].
2212+
builder.ensure(compile::Std::force_recompile(compiler, target));
22062213
builder.ensure(RemoteCopyLibs { compiler, target });
22072214

22082215
// If we're not doing a full bootstrap but we're testing a stage2
@@ -2216,6 +2223,16 @@ impl Step for Crate {
22162223
match mode {
22172224
Mode::Std => {
22182225
compile::std_cargo(builder, target, compiler.stage, &mut cargo);
2226+
// `std_cargo` actually does the wrong thing: it passes `--sysroot build/host/stage2`,
2227+
// but we want to use the force-recompile std we just built in `build/host/stage2-test-sysroot`.
2228+
// Override it.
2229+
if builder.download_rustc() {
2230+
let sysroot = builder
2231+
.out
2232+
.join(compiler.host.triple)
2233+
.join(format!("stage{}-test-sysroot", compiler.stage));
2234+
cargo.env("RUSTC_SYSROOT", sysroot);
2235+
}
22192236
}
22202237
Mode::Rustc => {
22212238
compile::rustc_cargo(builder, &mut cargo, target, compiler.stage);
@@ -2267,6 +2284,11 @@ impl Step for CrateRustdoc {
22672284
// isn't really necessary.
22682285
builder.compiler_for(builder.top_stage, target, target)
22692286
};
2287+
// NOTE: normally `ensure(Rustc)` automatically runs `ensure(Std)` for us. However, when
2288+
// using `download-rustc`, the rustc_private artifacts may be in a *different sysroot* from
2289+
// the target rustdoc (`ci-rustc-sysroot` vs `stage2`). In that case, we need to ensure this
2290+
// explicitly to make sure it ends up in the stage2 sysroot.
2291+
builder.ensure(compile::Std::new(compiler, target));
22702292
builder.ensure(compile::Rustc::new(compiler, target));
22712293

22722294
let mut cargo = tool::prepare_tool_cargo(
@@ -2318,7 +2340,13 @@ impl Step for CrateRustdoc {
23182340
dylib_path.insert(0, PathBuf::from(&*libdir));
23192341
cargo.env(dylib_path_var(), env::join_paths(&dylib_path).unwrap());
23202342

2321-
let _guard = builder.msg(builder.kind, compiler.stage, "rustdoc", compiler.host, target);
2343+
let _guard = builder.msg_sysroot_tool(
2344+
builder.kind,
2345+
compiler.stage,
2346+
"rustdoc",
2347+
compiler.host,
2348+
target,
2349+
);
23222350
run_cargo_test(
23232351
cargo,
23242352
&[],

0 commit comments

Comments
 (0)
Please sign in to comment.