diff options
| author | Ralf Jung <post@ralfj.de> | 2022-07-22 07:49:20 -0400 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2022-07-22 08:33:35 -0400 |
| commit | ae22ae135879f1a0713888239b9242c1813a10c8 (patch) | |
| tree | 17c525e08b1d247f179320655fdb62f6280ec683 /src/bootstrap | |
| parent | e7a9c1141698bc4557b9da3d3fce2bf75339427f (diff) | |
miri: make --stage 0 testing work
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/test.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index 4c6b5ba0afc..078207d85fe 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -475,6 +475,9 @@ impl Step for Miri { let stage = self.stage; let host = self.host; let compiler = builder.compiler(stage, host); + // We need the stdlib for the *next* stage, as it was built with this compiler that also built Miri. + // Except if we are at stage 2, the bootstrap loop is complete and we can stick with our current stage. + let compiler_std = builder.compiler(if stage < 2 { stage + 1 } else { stage }, host); let miri = builder.ensure(tool::Miri { compiler, target: self.host, extra_features: Vec::new() }); @@ -483,6 +486,10 @@ impl Step for Miri { target: self.host, extra_features: Vec::new(), }); + // The stdlib we need might be at a different stage. And just asking for the + // sysroot does not seem to populate it, so we do that first. + builder.ensure(compile::Std::new(compiler_std, host)); + let sysroot = builder.sysroot(compiler_std); if let (Some(miri), Some(_cargo_miri)) = (miri, cargo_miri) { let mut cargo = builder.cargo(compiler, Mode::ToolRustc, SourceType::Submodule, host, "install"); @@ -562,6 +569,7 @@ impl Step for Miri { // miri tests need to know about the stage sysroot cargo.env("MIRI_SYSROOT", miri_sysroot); + cargo.env("MIRI_HOST_SYSROOT", sysroot); cargo.env("RUSTC_LIB_PATH", builder.rustc_libdir(compiler)); cargo.env("MIRI", miri); |
