Merge #815: Update build docs for FreeBSD 12.1-RELEASE

a9f51d724 Update build docs for FreeBSD 12.1-RELEASE (wiz)

Pull request description:

  Fixes #814 by setting basic build configuration:

  * Use gmake instead of make
  * Use clang instead of gcc
  * Add /usr/local to include path

Tree-SHA512: e65ac047c3281eda67d0514d038523d85168f8da3dd0fa3d194eafe6ccea6d9fbb01e8cbd96a4428612de10df71b118ed4be29122cde80c266cad12a76b6d595
This commit is contained in:
Steven Roose 2020-06-15 12:52:55 +01:00
commit f28c949f72
No known key found for this signature in database
GPG key ID: 2F2A88D7F8D68E87

View file

@ -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"
@ -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
```