-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
./configure --help
should print --disable-docs
instead of --enable-docs
#129146
Comments
@rustbot claim |
Right after printing the --enable-docs, there is also this disclaimer. I am a first-time contributor to Rust. Thanks for the guidance. |
I believe default option for building docs is true, that is, documentation is built by default. |
Hi, I got that. I am thinking we need to somehow get the default values for each option and print --enable or --disable accordingly. |
This will still be a problem in the future. I'm sure there are other unsynced flags in |
|
What makes you think that? |
All |
|
@rustbot release-assignment |
@rustbot claim |
raised PR #131117 taking @onur-ozkan suggestion of updating the helper docs till python wrapper is deprecated. |
…zkan Update helper docs display disable option Updated helper docs via configure.py to make it clearer that users can control options with enable and disable Fixing issue rust-lang#129146
Fixed by #131117. |
The problem report here is, that #131117 is not a fix to the problem addressed here. If you are not willing to show on I wrote an article on whether to print |
This is not a valid issue anymore, please open another one if you think |
With rust 1.80 ./configure --help prints:
This means, that by default the standard librarly documentation is not built, but with this option it can be turned on.
However, config.example.toml contains
For me the last line means, that by default the documentation is build. Indeed,
./configure --disable-docs
puts in config.toml:docs = false
../configure --help
from--enable-docs
to--disable-docs
to indicate what actions users should take in order to deviate from the default.The text was updated successfully, but these errors were encountered: