Closed as not planned
Description
After doing ./x.py --keep-stage 0 build src/rustc
, I can use build/$ARCH/stage2
as Rust toolchain through rustup, and it works just fine. However, if I now do ./x.py --keep-stage 0 test ...
, the toolchain breaks -- for example, compiling miri fails with error[E0463]: can't find crate for `rustc`
. I have to do ./x.py --keep-stage 0 build src/rustc
again (which finishes pretty quickly) to fix this -- but that should not be necessary.