diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-04-21 10:42:13 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-04-21 10:45:58 +0200 |
| commit | 694062eafec5fe1526e4c72a1804d91d1ccd6a2c (patch) | |
| tree | c51c2520d3ae95c83706874e018998257bd6f70a | |
| parent | Merge #10181: Include cleanup (diff) | |
| parent | Minor fix in build documentation for FreeBSD 11 (diff) | |
| download | discoin-694062eafec5fe1526e4c72a1804d91d1ccd6a2c.tar.xz discoin-694062eafec5fe1526e4c72a1804d91d1ccd6a2c.zip | |
Merge #10245: Minor fix in build documentation for FreeBSD 11
0611bc3 Minor fix in build documentation for FreeBSD 11 (Shigeya Suzuki)
Tree-SHA512: d0e0b66868e4a988e1fa121b9c7b2877b77e2b3c7a9d7a6220c9e16cf0d6817786e9020aeba19dfa2cbc07b2fbba12f2afefc442e762a7d00292bde7515ef880
| -rw-r--r-- | doc/build-unix.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md index 31a88a1b1..b7eae2a63 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -321,8 +321,10 @@ Clang is installed by default as `cc` compiler, this makes it easier to get started than on [OpenBSD](build-openbsd.md). Installing dependencies: pkg install autoconf automake libtool pkgconf - pkg install boost-libs openssl libevent2 + pkg install boost-libs openssl libevent + pkg install gmake +You need to use GNU make (`gmake`) instead of `make`. (`libressl` instead of `openssl` will also work) For the wallet (optional): @@ -338,7 +340,7 @@ Then build using: ./autogen.sh ./configure --with-incompatible-bdb BDB_CFLAGS="-I/usr/local/include/db5" BDB_LIBS="-L/usr/local/lib -ldb_cxx-5" - make + gmake *Note on debugging*: The version of `gdb` installed by default is [ancient and considered harmful](https://wiki.freebsd.org/GdbRetirement). It is not suitable for debugging a multi-threaded C++ program, not even for getting backtraces. Please install the package `gdb` and |