-
Notifications
You must be signed in to change notification settings - Fork 38.7k
docs: improve make with parallel jobs description. #21942
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
Conversation
|
ACK, agree that this is a clearer wording. |
|
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers. ConflictsReviewers, this pull request conflicts with the following ones:
If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first. |
jarolrod
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Concept ACK
Two more places where you might want to add a similar note:
e5e192f to
07bc22e
Compare
Thanks for pointing that out. Updated the PR according to this. |
|
ACK 07bc22e |
07bc22e docs: improve make with parallel jobs description. (Klement Tan) Pull request description: Changed `use -jX here for parallelism` to `use "-j N" for N parallel jobs` **Rationale**: In my opinion `use -jX here for parallelism` is quite ambiguous as it could be perceived as a single option without any argument. Ie running: ```sh make -jX ``` Embarrassingly this caused me to be stuck for quite a long time until I opened the help menu for `make` but if I am the only one who faced this issue I would be happy to close this PR. ACKs for top commit: jarolrod: ACK 07bc22e Tree-SHA512: 2d119b6a461668906c63184b865d2cc9fb2f75abeba34e2e44bc1ef3bcb4adec4a49896ddaf3cc6a20c0095ad20d0de0908401b351eaca9443161d24d6b20d0b
Changed
use -jX here for parallelismtouse "-j N" for N parallel jobsRationale: In my opinion
use -jX here for parallelismis quite ambiguous as it could be perceived as a single option without any argument. Ie running:Embarrassingly this caused me to be stuck for quite a long time until I opened the help menu for
makebut if I am the only one who faced this issue I would be happy to close this PR.