Skip to content

Commit 0e2e315

Browse files
MarcoFalkeknst
MarcoFalke
authored andcommitted
Merge bitcoin#21942: docs: improve make with parallel jobs description.
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
1 parent c2735a8 commit 0e2e315

5 files changed

+5
-5
lines changed

doc/build-freebsd.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,6 @@ This explicitly enables the GUI and disables legacy wallet support. If `qt5` is
131131
**Important**: Use `gmake` (the non-GNU `make` will exit with an error).
132132

133133
```bash
134-
gmake # use -jX here for parallelism
134+
gmake # use "-j N" for N parallel jobs
135135
gmake check # Run tests if Python 3 is available
136136
```

doc/build-netbsd.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ Without wallet:
7979

8080
Build and run the tests:
8181
```bash
82-
gmake # use -jX here for parallelism
82+
gmake # use "-j N" here for N parallel jobs
8383
gmake check
8484
```

doc/build-openbsd.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ To configure with GUI:
8585

8686
Build and run the tests:
8787
```bash
88-
gmake # use -jX here for parallelism
88+
gmake # use "-j N" here for N parallel jobs
8989
gmake check
9090
```
9191

doc/build-osx.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ After configuration, you are ready to compile.
276276
Run the following in your terminal to compile Dash Core:
277277

278278
``` bash
279-
make -jx # use -jX here for parallelism
279+
make # use "-j N" here for N parallel jobs
280280
make check # Run tests if Python 3 is available
281281
```
282282

doc/build-unix.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To Build
2222
```sh
2323
./autogen.sh
2424
./configure
25-
make
25+
make # use "-j N" for N parallel jobs
2626
make install # optional
2727
```
2828

0 commit comments

Comments
 (0)