-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
./x.py clean does not clean LLVM, ./x.py clean -h looks wrong #44214
Copy link
Copy link
Closed
Labels
C-cleanupCategory: PRs that clean code up or issues documenting cleanup.Category: PRs that clean code up or issues documenting cleanup.E-mentorCall for participation: This issue has a mentor. Use #t-compiler/help on Zulip for discussion.Call for participation: This issue has a mentor. Use #t-compiler/help on Zulip for discussion.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-infraRelevant to the infrastructure team, which will review and decide on the PR/issue.Relevant to the infrastructure team, which will review and decide on the PR/issue.
Metadata
Metadata
Assignees
Labels
C-cleanupCategory: PRs that clean code up or issues documenting cleanup.Category: PRs that clean code up or issues documenting cleanup.E-mentorCall for participation: This issue has a mentor. Use #t-compiler/help on Zulip for discussion.Call for participation: This issue has a mentor. Use #t-compiler/help on Zulip for discussion.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-infraRelevant to the infrastructure team, which will review and decide on the PR/issue.Relevant to the infrastructure team, which will review and decide on the PR/issue.
Type
Fields
Give feedbackNo fields configured for issues without a type.
In a clone of this repository that I hadn’t used for a long time, I ran
git pullthen./x.py build. The latter failed in the middle of building LLVM with:Running
./x.py cleanand then./x.py buildagain did not help. It turns out that./x.py cleandoes not cleanbuild/x86_64-unknown-linux-gnu/llvm/build. Removing everything withrm -r build/*"fixed" the issue.I tried
./x.py clean -hto see if there’s an option to clean everything, but the output of that is confusing. It looks like the help message for./x.pywithout any subcommand.