-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
stage0 run-make compiletest broken #122196
Copy link
Copy link
Closed
Labels
A-testsuiteArea: The testsuite used to check the correctness of rustcArea: The testsuite used to check the correctness of rustcC-bugCategory: This is a bug.Category: This is a bug.T-bootstrapRelevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
Metadata
Metadata
Assignees
Labels
A-testsuiteArea: The testsuite used to check the correctness of rustcArea: The testsuite used to check the correctness of rustcC-bugCategory: This is a bug.Category: This is a bug.T-bootstrapRelevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
Type
Fields
Give feedbackNo fields configured for issues without a type.
COMPILETEST_FORCE_STAGE0=1 ./x.py test --stage 0 tests/run-makeno longer works.librun_make_support.rlibis compiled using the bootstrap rustc wrapper which sets--sysroot build/$HOST_TRIPLE/stage0-sysroot, but then compiletest will compilermake.rsusing the sysroot of the bootstrap compiler causing it to not find thelibstd.rlibagainst whichlibrun_make_support.rlibis compiled.This regressed with #113026. (cc @jieyouxu)