Skip to content

Commit f28c949

Browse files
committed
Merge #815: Update build docs for FreeBSD 12.1-RELEASE
a9f51d7 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
2 parents be2540a + a9f51d7 commit f28c949

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

doc/build-freebsd.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export BDB_PREFIX="$PWD/db4"
4141
With wallet:
4242
```shell
4343
./autogen.sh
44+
MAKE=gmake CC=cc CXX=c++ CPPFLAGS=-I/usr/local/include \
4445
./configure --with-gui=no \
4546
BDB_LIBS="-L${BDB_PREFIX}/lib -ldb_cxx-4.8" \
4647
BDB_CFLAGS="-I${BDB_PREFIX}/include"
@@ -49,6 +50,7 @@ With wallet:
4950
Without wallet:
5051
```shell
5152
./autogen.sh
53+
MAKE=gmake CC=cc CXX=c++ CPPFLAGS=-I/usr/local/include \
5254
./configure --with-gui=no --disable-wallet
5355
```
5456

0 commit comments

Comments
 (0)