Skip to content

Commit

Permalink
automate nproc
Browse files Browse the repository at this point in the history
  • Loading branch information
plebhash committed Apr 8, 2024
1 parent e865b77 commit c406f7a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ Next, compile the template provider. You can accelerate the process by using mul
```bash
make clean
./autogen.sh && ./configure
nproc # find out how many cores are available on your CPU
make -j <nproc> # replace the result of nproc here
make -j "$(nproc)" # on linux
# or
make -j "$(sysctl -n hw.physicalcpu)" # on macOS
```

Edit the `bitcoin.conf` file by adding:
Expand Down

0 comments on commit c406f7a

Please sign in to comment.