Inconsistency between Clippy and Rustdoc build stages #92538
Labels
A-clippy
Area: Clippy
C-bug
Category: This is a bug.
T-bootstrap
Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
If I run:
Then I get a
rustdoc
built against my localstage1
compilerHowever, if I run:
Then bootstrap will attempt to build a stage2 compiler, and compile Clippy against it. In order to get the same result as with Rustdoc, I need to use
./x.py build src/tools/clippy --stage 0
As far as I know, both Clippy and Rustdoc are both the same 'kind' of tool (they are a frontend that runs some of the compiler's passes), so
--stage N
should give the same result with both of them.The text was updated successfully, but these errors were encountered: