./x.py clean
does not clean LLVM, ./x.py clean -h
looks wrong
#44214
Labels
C-cleanup
Category: PRs that clean code up or issues documenting cleanup.
E-mentor
Call for participation: This issue has a mentor. Use #t-compiler/help on Zulip for discussion.
T-bootstrap
Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
T-infra
Relevant to the infrastructure team, which will review and decide on the PR/issue.
In a clone of this repository that I hadn’t used for a long time, I ran
git pull
then./x.py build
. The latter failed in the middle of building LLVM with:Running
./x.py clean
and then./x.py build
again did not help. It turns out that./x.py clean
does not cleanbuild/x86_64-unknown-linux-gnu/llvm/build
. Removing everything withrm -r build/*
"fixed" the issue.I tried
./x.py clean -h
to see if there’s an option to clean everything, but the output of that is confusing. It looks like the help message for./x.py
without any subcommand.The text was updated successfully, but these errors were encountered: