-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Closed
Labels
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-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.
Description
Consider a command line invocation like this:
python x.py test --stage 1 --target=x86_64-unknown-linux-gnu
It has the most commonly edited arguments somewhere middle in the command line, and the least edited – on the sides. Instead I would, so editing the command would be very quick:
python x.py --target=x86_64-unknown-linux-gnu --stage 1 test
but it fails with an error:
unknown command: --stage
Usage: x.py --stage [options] [<args>...]
(unrelatedly, it seems like its usage is also kinda wrong)
estebank
Metadata
Metadata
Assignees
Labels
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-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.