Skip to content

Commit 07bc22e

Browse files
committed
docs: improve make with parallel jobs description.
1 parent eb9a1fe commit 07bc22e

6 files changed

+6
-6
lines changed

doc/build-freebsd.md

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

126126
```bash
127-
gmake # use -jX here for parallelism
127+
gmake # use "-j N" for N parallel jobs
128128
gmake check # Run tests if Python 3 is available
129129
```

doc/build-netbsd.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ Without wallet:
7676

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

doc/build-openbsd.md

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

9191
Build and run the tests:
9292
```bash
93-
gmake # use -jX here for parallelism
93+
gmake # use "-j N" here for N parallel jobs
9494
gmake check
9595
```
9696

doc/build-osx.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ After configuration, you are ready to compile.
270270
Run the following in your terminal to compile Bitcoin Core:
271271

272272
``` bash
273-
make -jx # use -jX here for parallelism
273+
make # use "-j N" here for N parallel jobs
274274
make check # Run tests if Python 3 is available
275275
```
276276

doc/build-unix.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To Build
2020
```bash
2121
./autogen.sh
2222
./configure
23-
make
23+
make # use "-j N" for N parallel jobs
2424
make install # optional
2525
```
2626

doc/build-windows.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Build using:
105105
cd ..
106106
./autogen.sh
107107
CONFIG_SITE=$PWD/depends/x86_64-w64-mingw32/share/config.site ./configure --prefix=/
108-
make
108+
make # use "-j N" for N parallel jobs
109109
sudo bash -c "echo 1 > /proc/sys/fs/binfmt_misc/status" # Enable WSL support for Win32 applications.
110110

111111
## Depends system

0 commit comments

Comments
 (0)