Merge #15055: [0.17] Backport #14944

b138b4abff doc: update NetBSD build instructions for 8.0 (fanquake)

Pull request description:

  Backports #14944 to the 0.17 branch.

Tree-SHA512: b169ff9c42cca3573b972b43adaf0556d5a198a755cd4c1a69c4c557b7cab6cf977c24d575c8802869d157d2bb0dff76c5d7f1e7647a58a4670f252614dab421
This commit is contained in:
MarcoFalke 2018-12-29 13:45:14 +01:00
commit fa941016e8
No known key found for this signature in database
GPG key ID: D2EA4850E7528B25

View file

@ -1,6 +1,6 @@
NetBSD build guide NetBSD build guide
====================== ======================
(updated for NetBSD 7.0) (updated for NetBSD 8.0)
This guide describes how to build bitcoind and command-line utilities on NetBSD. This guide describes how to build bitcoind and command-line utilities on NetBSD.
@ -15,21 +15,38 @@ You will need the following modules, which can be installed via pkgsrc or pkgin:
autoconf autoconf
automake automake
boost boost
db4
git git
gmake gmake
libevent libevent
libtool libtool
python27 pkg-config
``` python37
Download the source code: git clone https://github.com/bitcoin/bitcoin.git
```
git clone https://github.com/bitcoin/bitcoin
``` ```
See [dependencies.md](dependencies.md) for a complete overview. See [dependencies.md](dependencies.md) for a complete overview.
### Building BerkeleyDB
BerkeleyDB is only necessary for the wallet functionality. To skip this, pass
`--disable-wallet` to `./configure` and skip to the next section.
It is recommended to use Berkeley DB 4.8. You cannot use the BerkeleyDB library
from ports, for the same reason as boost above (g++/libstd++ incompatibility).
If you have to build it yourself, you can use [the installation script included
in contrib/](/contrib/install_db4.sh) like so:
```shell
./contrib/install_db4.sh `pwd`
```
from the root of the repository. Then set `BDB_PREFIX` for the next section:
```shell
export BDB_PREFIX="$PWD/db4"
```
### Building Bitcoin Core ### Building Bitcoin Core
**Important**: Use `gmake` (the non-GNU `make` will exit with an error). **Important**: Use `gmake` (the non-GNU `make` will exit with an error).
@ -37,13 +54,26 @@ See [dependencies.md](dependencies.md) for a complete overview.
With wallet: With wallet:
``` ```
./autogen.sh ./autogen.sh
./configure CPPFLAGS="-I/usr/pkg/include" LDFLAGS="-L/usr/pkg/lib" BOOST_CPPFLAGS="-I/usr/pkg/include" BOOST_LDFLAGS="-L/usr/pkg/lib" ./configure --with-gui=no CPPFLAGS="-I/usr/pkg/include" \
gmake LDFLAGS="-L/usr/pkg/lib" \
BOOST_CPPFLAGS="-I/usr/pkg/include" \
BOOST_LDFLAGS="-L/usr/pkg/lib" \
BDB_LIBS="-L${BDB_PREFIX}/lib -ldb_cxx-4.8" \
BDB_CFLAGS="-I${BDB_PREFIX}/include"
``` ```
Without wallet: Without wallet:
``` ```
./autogen.sh ./autogen.sh
./configure --disable-wallet CPPFLAGS="-I/usr/pkg/include" LDFLAGS="-L/usr/pkg/lib" BOOST_CPPFLAGS="-I/usr/pkg/include" BOOST_LDFLAGS="-L/usr/pkg/lib" ./configure --with-gui=no --disable-wallet \
gmake CPPFLAGS="-I/usr/pkg/include" \
LDFLAGS="-L/usr/pkg/lib" \
BOOST_CPPFLAGS="-I/usr/pkg/include" \
BOOST_LDFLAGS="-L/usr/pkg/lib"
```
Build and run the tests:
```bash
gmake # use -jX here for parallelism
gmake check
``` ```