-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Closed
Labels
A-clippyArea: ClippyArea: ClippyC-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)T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.
Description
If I run:
./x.py build src/tools/rustdoc --stage 1
Then I get a rustdoc
built against my local stage1
compiler
However, if I run:
./x.py build src/tools/clippy --stage 1
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.
Patrick-Poitras and ian-h-chamberlain
Metadata
Metadata
Assignees
Labels
A-clippyArea: ClippyArea: ClippyC-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)T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.