Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rustbuild accepts -h but not --help #34534

Closed
arielb1 opened this issue Jun 28, 2016 · 4 comments
Closed

rustbuild accepts -h but not --help #34534

arielb1 opened this issue Jun 28, 2016 · 4 comments
Labels
E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)

Comments

@arielb1
Copy link
Contributor

arielb1 commented Jun 28, 2016

$ python ../src/bootstrap/bootstrap.py -h
Usage: rust.py [options]

Options:
    -v, --verbose       use verbose output
        --config FILE   TOML configuration file for build
        --host HOST     host targets to build
        --build BUILD   build target of the stage0 compiler
        --target TARGET targets to build
    -s, --step STEP     build step to execute
        --stage N       stage to build
        --src DIR       path to repo root
    -j, --jobs JOBS     number of jobs to run in parallel
        --clean         clean output directory
    -h, --help          print this help message
$ python ../src/bootstrap/bootstrap.py --help
usage: bootstrap.py [-h] [--config CONFIG] [--clean] [-v]

Build rust

optional arguments:
  -h, --help       show this help message and exit
  --config CONFIG
  --clean
  -v, --verbose
@arielb1
Copy link
Contributor Author

arielb1 commented Jun 28, 2016

cc @alexcrichton

@alexcrichton alexcrichton added E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) labels Jun 28, 2016
@alexcrichton
Copy link
Member

Should be an easy fix! Would be quite willing to mentor anyone interested

@GlenDC
Copy link
Contributor

GlenDC commented Jun 29, 2016

I was investigating in fixing this issue, but it seems like --help works, while -h doesn't work. And it doesn't work because it is filtered out of sys.argv before we pass it onto the argument parsing?

You can see this in bootstrap.h#L349: args = [a for a in sys.argv if a != '-h']. Why is the -h flag filtered out? Also @arielb1 I never see the help/usage description of the first command you posted.

We're talking about the rust-lang/rust/src/bootstrap/bootstrap.py script, no?

@alexcrichton
Copy link
Member

Ah I think that'd do it, yeah. We probably just need to filter out both -h and --help from sys.argv in python. The idea is that those flags should be forwarded to the Rust build system rather than the python script (the help printed for --help) as the python script doesn't have the full suite of options, just a subset.

steveklabnik added a commit to steveklabnik/rust that referenced this issue Jul 5, 2016
rustbuild: propagate bootstrap.py '--help' flag

Fixes rust-lang#34534.
r? @alexcrichton
steveklabnik added a commit to steveklabnik/rust that referenced this issue Jul 5, 2016
rustbuild: propagate bootstrap.py '--help' flag

Fixes rust-lang#34534.
r? @alexcrichton
steveklabnik added a commit to steveklabnik/rust that referenced this issue Jul 6, 2016
rustbuild: propagate bootstrap.py '--help' flag

Fixes rust-lang#34534.
r? @alexcrichton
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
Projects
None yet
Development

No branches or pull requests

3 participants