Skip to content

Commit a5dbdc2

Browse files
authored
Rollup merge of #122248 - jieyouxu:rmake-sysroot, r=Mark-Simulacrum
Respect stage0 sysroot when compiling rmake.rs with COMPILETEST_FORCE_STAGE0 Context: <https://rust-lang.zulipchat.com/#narrow/stream/326414-t-infra.2Fbootstrap/topic/stage0.20compiletest.20broken>. > cg_clif uses `COMPILETEST_FORCE_STAGE0=1 ./x.py test --stage 0` for running the rustc test suite. With the introduction of rmake.rs this broke. `librun_make_support.rlib` is compiled using the bootstrap rustc wrapper which sets `--sysroot build/aarch64-unknown-linux-gnu/stage0-sysroot`, but then compiletest will compile `rmake.rs` using the sysroot of the bootstrap compiler causing it to not find the `libstd.rlib` against which `librun_make_support.rlib` is compiled. cc ``@bjorn3`` Fixes #122196.
2 parents 3c07321 + 43de44d commit a5dbdc2

File tree

1 file changed

+36
-30
lines changed

1 file changed

+36
-30
lines changed

src/tools/compiletest/src/runtest.rs

+36-30
Original file line numberDiff line numberDiff line change
@@ -3734,36 +3734,42 @@ impl<'test> TestCx<'test> {
37343734
debug!(?support_lib_deps);
37353735
debug!(?support_lib_deps_deps);
37363736

3737-
let res = self.cmd2procres(
3738-
Command::new(&self.config.rustc_path)
3739-
.arg("-o")
3740-
.arg(&recipe_bin)
3741-
.arg(format!(
3742-
"-Ldependency={}",
3743-
&support_lib_path.parent().unwrap().to_string_lossy()
3744-
))
3745-
.arg(format!("-Ldependency={}", &support_lib_deps.to_string_lossy()))
3746-
.arg(format!("-Ldependency={}", &support_lib_deps_deps.to_string_lossy()))
3747-
.arg("--extern")
3748-
.arg(format!("run_make_support={}", &support_lib_path.to_string_lossy()))
3749-
.arg(&self.testpaths.file.join("rmake.rs"))
3750-
.env("TARGET", &self.config.target)
3751-
.env("PYTHON", &self.config.python)
3752-
.env("S", &src_root)
3753-
.env("RUST_BUILD_STAGE", &self.config.stage_id)
3754-
.env("RUSTC", cwd.join(&self.config.rustc_path))
3755-
.env("TMPDIR", &tmpdir)
3756-
.env("LD_LIB_PATH_ENVVAR", dylib_env_var())
3757-
.env("HOST_RPATH_DIR", cwd.join(&self.config.compile_lib_path))
3758-
.env("TARGET_RPATH_DIR", cwd.join(&self.config.run_lib_path))
3759-
.env("LLVM_COMPONENTS", &self.config.llvm_components)
3760-
// We for sure don't want these tests to run in parallel, so make
3761-
// sure they don't have access to these vars if we run via `make`
3762-
// at the top level
3763-
.env_remove("MAKEFLAGS")
3764-
.env_remove("MFLAGS")
3765-
.env_remove("CARGO_MAKEFLAGS"),
3766-
);
3737+
let mut cmd = Command::new(&self.config.rustc_path);
3738+
cmd.arg("-o")
3739+
.arg(&recipe_bin)
3740+
.arg(format!("-Ldependency={}", &support_lib_path.parent().unwrap().to_string_lossy()))
3741+
.arg(format!("-Ldependency={}", &support_lib_deps.to_string_lossy()))
3742+
.arg(format!("-Ldependency={}", &support_lib_deps_deps.to_string_lossy()))
3743+
.arg("--extern")
3744+
.arg(format!("run_make_support={}", &support_lib_path.to_string_lossy()))
3745+
.arg(&self.testpaths.file.join("rmake.rs"))
3746+
.env("TARGET", &self.config.target)
3747+
.env("PYTHON", &self.config.python)
3748+
.env("S", &src_root)
3749+
.env("RUST_BUILD_STAGE", &self.config.stage_id)
3750+
.env("RUSTC", cwd.join(&self.config.rustc_path))
3751+
.env("TMPDIR", &tmpdir)
3752+
.env("LD_LIB_PATH_ENVVAR", dylib_env_var())
3753+
.env("HOST_RPATH_DIR", cwd.join(&self.config.compile_lib_path))
3754+
.env("TARGET_RPATH_DIR", cwd.join(&self.config.run_lib_path))
3755+
.env("LLVM_COMPONENTS", &self.config.llvm_components)
3756+
// We for sure don't want these tests to run in parallel, so make
3757+
// sure they don't have access to these vars if we run via `make`
3758+
// at the top level
3759+
.env_remove("MAKEFLAGS")
3760+
.env_remove("MFLAGS")
3761+
.env_remove("CARGO_MAKEFLAGS");
3762+
3763+
if std::env::var_os("COMPILETEST_FORCE_STAGE0").is_some() {
3764+
let mut stage0_sysroot = build_root.clone();
3765+
stage0_sysroot.push("stage0-sysroot");
3766+
debug!(?stage0_sysroot);
3767+
debug!(exists = stage0_sysroot.exists());
3768+
3769+
cmd.arg("--sysroot").arg(&stage0_sysroot);
3770+
}
3771+
3772+
let res = self.cmd2procres(&mut cmd);
37673773
if !res.status.success() {
37683774
self.fatal_proc_rec("run-make test failed: could not build `rmake.rs` recipe", &res);
37693775
}

0 commit comments

Comments
 (0)