Skip to content

Commit

Permalink
Merge pull request #1731 from div72/fix-unixbuildtypo
Browse files Browse the repository at this point in the history
doc: Update doc/build-unix.md
  • Loading branch information
jamescowens authored Jun 14, 2020
2 parents 06bbc5e + da0fbf1 commit 75ccf31
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions doc/build-unix.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,17 @@ To Build
```bash
./autogen.sh
./configure
make
make -j$(nproc --all) # core count by default, could be changed to the desired amount of threads
make install # optional
```

Or, to keep the source directory clean:
```bash
./autogen.sh && mkdir build && ../configure && make
./autogen.sh
mkdir build
cd build
../configure
make -j$(nproc --all) # core count by default, could be changed to the desired amount of threads
```

This will build gridcoinresearch (Qt client) as well if the dependencies are met.
Expand Down

0 comments on commit 75ccf31

Please sign in to comment.