2020-12-08 07:43:02 +01:00
# FreeBSD Build Guide
2018-06-02 04:40:44 +02:00
2022-03-17 11:51:44 +01:00
**Updated for FreeBSD [12.3 ](https://www.freebsd.org/releases/12.3R/announce/ )**
2018-06-02 04:40:44 +02:00
2020-12-08 07:43:02 +01:00
This guide describes how to build bitcoind, command-line utilities, and GUI on FreeBSD.
2018-06-02 04:40:44 +02:00
## Preparation
2020-12-08 07:43:02 +01:00
### 1. Install Required Dependencies
2022-03-23 01:33:02 +01:00
Run the following as root to install the base dependencies for building.
2018-06-02 04:40:44 +02:00
2020-02-12 19:16:39 +01:00
```bash
2019-10-26 15:14:14 +02:00
pkg install autoconf automake boost-libs git gmake libevent libtool pkgconf
2019-02-15 12:54:59 +01:00
2020-12-08 07:43:02 +01:00
```
2021-11-19 02:52:48 +01:00
See [dependencies.md ](dependencies.md ) for a complete overview.
2020-12-08 07:43:02 +01:00
### 2. Clone Bitcoin Repo
Now that `git` and all the required dependencies are installed, let's clone the Bitcoin Core repository to a directory. All build scripts and commands will run from this directory.
``` bash
2019-02-15 12:54:59 +01:00
git clone https://github.com/bitcoin/bitcoin.git
2018-06-02 04:40:44 +02:00
```
2020-12-08 07:43:02 +01:00
### 3. Install Optional Dependencies
#### Wallet Dependencies
2022-03-17 11:51:44 +01:00
It is not necessary to build wallet functionality to run either `bitcoind` or `bitcoin-qt` .
2018-10-31 10:52:50 +01:00
2020-12-08 07:43:02 +01:00
###### Descriptor Wallet Support
2018-06-02 04:40:44 +02:00
2022-03-17 11:51:44 +01:00
`sqlite3` is required to support [descriptor wallets ](descriptors.md ).
Skip if you don't intend to use descriptor wallets.
2020-12-08 07:43:02 +01:00
``` bash
pkg install sqlite3
```
2022-03-17 11:51:44 +01:00
###### Legacy Wallet Support
2022-12-30 07:32:50 +01:00
BerkeleyDB is only required if legacy wallet support is required.
It is required to use Berkeley DB 4.8. You **cannot** use the BerkeleyDB library
from ports. However, you can build DB 4.8 yourself [using depends ](/depends ).
2022-03-17 11:51:44 +01:00
```
2022-12-30 07:32:50 +01:00
gmake -C depends NO_BOOST=1 NO_LIBEVENT=1 NO_QT=1 NO_SQLITE=1 NO_NATPMP=1 NO_UPNP=1 NO_ZMQ=1 NO_USDT=1
```
When the build is complete, the Berkeley DB installation location will be displayed:
```
to: /path/to/bitcoin/depends/x86_64-unknown-freebsd[release-number]
```
Finally, set `BDB_PREFIX` to this path according to your shell:
```
csh: setenv BDB_PREFIX [path displayed above]
```
```
sh/bash: export BDB_PREFIX=[path displayed above]
```
2019-02-15 12:54:59 +01:00
2020-12-08 07:43:02 +01:00
#### GUI Dependencies
###### Qt5
2019-02-15 12:54:59 +01:00
2020-12-08 07:43:02 +01:00
Bitcoin Core includes a GUI built with the cross-platform Qt Framework. To compile the GUI, we need to install `qt5` . Skip if you don't intend to use the GUI.
2020-02-12 19:16:39 +01:00
```bash
2020-12-08 07:43:02 +01:00
pkg install qt5
2018-06-02 04:40:44 +02:00
```
2020-12-08 07:43:02 +01:00
###### libqrencode
The GUI can encode addresses in a QR Code. To build in QR support for the GUI, install `libqrencode` . Skip if not using the GUI or don't want QR code functionality.
```bash
pkg install libqrencode
```
---
2021-11-19 02:52:48 +01:00
#### Notifications
###### ZeroMQ
Bitcoin Core can provide notifications via ZeroMQ. If the package is installed, support will be compiled in.
```bash
pkg install libzmq4
```
2020-12-08 07:43:02 +01:00
#### Test Suite Dependencies
There is an included test suite that is useful for testing code changes when developing.
To run the test suite (recommended), you will need to have Python 3 installed:
```bash
2023-01-11 17:55:56 +01:00
pkg install python3 databases/py-sqlite3
2020-12-08 07:43:02 +01:00
```
---
2018-06-02 04:40:44 +02:00
## Building Bitcoin Core
2020-12-08 07:43:02 +01:00
### 1. Configuration
2018-06-02 04:40:44 +02:00
2020-12-08 07:43:02 +01:00
There are many ways to configure Bitcoin Core, here are a few common examples:
2022-03-17 11:51:44 +01:00
##### Descriptor Wallet and GUI:
This explicitly enables the GUI and disables legacy wallet support, assuming `sqlite` and `qt` are installed.
```bash
./autogen.sh
./configure --without-bdb --with-gui=yes MAKE=gmake
```
##### Descriptor & Legacy Wallet. No GUI:
This enables support for both wallet types and disables the GUI, assuming
2022-12-30 07:32:50 +01:00
`sqlite3` and `db4` are both installed.
2020-02-12 19:16:39 +01:00
```bash
2018-06-02 04:40:44 +02:00
./autogen.sh
2022-12-30 07:32:50 +01:00
./configure --with-gui=no \
BDB_LIBS="-L${BDB_PREFIX}/lib -ldb_cxx-4.8" \
BDB_CFLAGS="-I${BDB_PREFIX}/include" \
2020-02-12 19:16:39 +01:00
MAKE=gmake
2018-10-31 10:52:50 +01:00
```
2020-12-08 07:43:02 +01:00
##### No Wallet or GUI
``` bash
./autogen.sh
./configure --without-wallet --with-gui=no MAKE=gmake
2018-06-02 04:40:44 +02:00
```
2020-12-08 07:43:02 +01:00
### 2. Compile
**Important**: Use `gmake` (the non-GNU `make` will exit with an error).
2018-10-31 10:52:50 +01:00
2020-02-12 19:16:39 +01:00
```bash
2021-05-13 14:15:59 +02:00
gmake # use "-j N" for N parallel jobs
2019-02-15 12:54:59 +01:00
gmake check # Run tests if Python 3 is available
2018-10-31 10:52:50 +01:00
```