2022-05-19 10:59:24 +02:00
NetBSD Build Guide
2018-01-30 09:56:38 +01:00
======================
2022-05-19 10:59:24 +02:00
**Updated for NetBSD [8.0 ](https://www.netbsd.org/releases/formal-8/NetBSD-8.0.html )**
2018-01-30 09:56:38 +01:00
2021-06-26 18:51:31 +02:00
This guide describes how to build dashd and command-line utilities on NetBSD.
2018-01-30 09:56:38 +01:00
This guide does not contain instructions for building the GUI.
2021-06-26 18:54:34 +02:00
**This guide has not been tested for building Dash Core and is expected to fail due to missing `bls_dash` and `backtrace` . Please report your results; contributions welcome.**
2021-06-26 18:51:31 +02:00
2018-01-30 09:56:38 +01:00
Preparation
-------------
You will need the following modules, which can be installed via pkgsrc or pkgin:
```
autoconf
automake
boost
git
gmake
2023-05-27 19:45:04 +02:00
gmp
2018-01-30 09:56:38 +01:00
libevent
libtool
2018-12-28 11:59:30 +01:00
pkg-config
python37
2018-01-30 09:56:38 +01:00
2021-06-26 18:51:31 +02:00
git clone https://github.com/dashpay/dash.git
2018-01-30 09:56:38 +01:00
```
See [dependencies.md ](dependencies.md ) for a complete overview.
2018-12-28 11:59:30 +01:00
### 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:
2020-02-12 19:16:39 +01:00
```bash
2018-12-28 11:59:30 +01:00
./contrib/install_db4.sh `pwd`
```
from the root of the repository. Then set `BDB_PREFIX` for the next section:
2020-02-12 19:16:39 +01:00
```bash
2018-12-28 11:59:30 +01:00
export BDB_PREFIX="$PWD/db4"
```
2021-06-26 18:51:31 +02:00
### Building Dash Core
2018-01-30 09:56:38 +01:00
**Important**: Use `gmake` (the non-GNU `make` will exit with an error).
With wallet:
2020-02-12 19:16:39 +01:00
```bash
2018-01-30 09:56:38 +01:00
./autogen.sh
2018-12-28 11:59:30 +01:00
./configure --with-gui=no CPPFLAGS="-I/usr/pkg/include" \
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" \
2020-02-12 19:16:39 +01:00
BDB_CFLAGS="-I${BDB_PREFIX}/include" \
MAKE=gmake
2018-01-30 09:56:38 +01:00
```
Without wallet:
2020-02-12 19:16:39 +01:00
```bash
2018-01-30 09:56:38 +01:00
./autogen.sh
2018-12-28 11:59:30 +01:00
./configure --with-gui=no --disable-wallet \
CPPFLAGS="-I/usr/pkg/include" \
LDFLAGS="-L/usr/pkg/lib" \
BOOST_CPPFLAGS="-I/usr/pkg/include" \
2020-02-12 19:16:39 +01:00
BOOST_LDFLAGS="-L/usr/pkg/lib" \
MAKE=gmake
2018-12-28 11:59:30 +01:00
```
Build and run the tests:
```bash
2021-05-14 08:21:56 +02:00
gmake # use "-j N" here for N parallel jobs
2018-12-28 11:59:30 +01:00
gmake check
2018-01-30 09:56:38 +01:00
```