Skip to content

Commit

Permalink
Update build docs for FreeBSD 12.1-RELEASE
Browse files Browse the repository at this point in the history
Fixes #814 by setting basic build configuration:

* Use gmake instead of make
* Use clang instead of gcc
* Add /usr/local to include path
  • Loading branch information
wiz committed Feb 9, 2020
1 parent da3611a commit a9f51d7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/build-freebsd.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export BDB_PREFIX="$PWD/db4"
With wallet:
```shell
./autogen.sh
MAKE=gmake CC=cc CXX=c++ CPPFLAGS=-I/usr/local/include \
./configure --with-gui=no \
BDB_LIBS="-L${BDB_PREFIX}/lib -ldb_cxx-4.8" \
BDB_CFLAGS="-I${BDB_PREFIX}/include"
Expand All @@ -49,6 +50,7 @@ With wallet:
Without wallet:
```shell
./autogen.sh
MAKE=gmake CC=cc CXX=c++ CPPFLAGS=-I/usr/local/include \
./configure --with-gui=no --disable-wallet
```

Expand Down

0 comments on commit a9f51d7

Please sign in to comment.