Skip to content

Commit 1fe9726

Browse files
authored
Rollup merge of #128108 - onur-ozkan:ensure-std-for-precompiled-rustc, r=Kobzol
ensure std step before preparing sysroot When using download-rustc, any stage other than 0 or 1 (e.g., cargo +stage2 build/doc) will fail to find std while compiling on simple rust sources. Ensuring the std step fixes this issue. r? Kobzol
2 parents 8884228 + 2f55ced commit 1fe9726

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/bootstrap/src/core/build_steps/compile.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1700,6 +1700,7 @@ impl Step for Assemble {
17001700

17011701
// If we're downloading a compiler from CI, we can use the same compiler for all stages other than 0.
17021702
if builder.download_rustc() {
1703+
builder.ensure(Std::new(target_compiler, target_compiler.host));
17031704
let sysroot =
17041705
builder.ensure(Sysroot { compiler: target_compiler, force_recompile: false });
17051706
// Ensure that `libLLVM.so` ends up in the newly created target directory,

0 commit comments

Comments
 (0)