aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShigeya Suzuki <shigeya@wide.ad.jp>2017-04-21 07:36:32 +0900
committerWladimir J. van der Laan <laanwj@gmail.com>2017-05-29 11:58:24 +0200
commit44a17f278a13ee3257b00b30381f591eb09e0165 (patch)
treea8b1d8c65d4eff50afa41f92ef854c8c879c710d
parent321419bc06fdc19e3713b2bcfc10c3c9bbbb8b62 (diff)
downloadbitcoin-44a17f278a13ee3257b00b30381f591eb09e0165.tar.xz
Minor fix in build documentation for FreeBSD 11
- Package name is libevent, not libevent2 - Need to use GNU make Github-Pull: #10245 Rebased-From: 0611bc3439c65e100db98914d18606f623048ba8
-rw-r--r--doc/build-unix.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md
index 31a88a1b18..b7eae2a630 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