2020-12-08 03:43:02 -03:00
# FreeBSD Build Guide
2018-06-01 22:40:44 -04:00
2022-03-17 07:51:44 -03:00
**Updated for FreeBSD [12.3 ](https://www.freebsd.org/releases/12.3R/announce/ )**
2018-06-01 22:40:44 -04:00
2020-12-08 03:43:02 -03:00
This guide describes how to build bitcoind, command-line utilities, and GUI on FreeBSD.
2018-06-01 22:40:44 -04:00
## Preparation
2020-12-08 03:43:02 -03:00
### 1. Install Required Dependencies
2022-03-22 21:33:02 -03:00
Run the following as root to install the base dependencies for building.
2018-06-01 22:40:44 -04:00
2020-02-12 15:16:39 -03:00
```bash
2019-10-26 10:14:14 -03:00
pkg install autoconf automake boost-libs git gmake libevent libtool pkgconf
2019-02-15 08:54:59 -03:00
2020-12-08 03:43:02 -03:00
```
2021-11-18 22:52:48 -03:00
See [dependencies.md ](dependencies.md ) for a complete overview.
2020-12-08 03:43:02 -03: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 08:54:59 -03:00
git clone https://github.com/bitcoin/bitcoin.git
2018-06-01 22:40:44 -04:00
```
2020-12-08 03:43:02 -03:00
### 3. Install Optional Dependencies
#### Wallet Dependencies
2022-03-17 07:51:44 -03:00
It is not necessary to build wallet functionality to run either `bitcoind` or `bitcoin-qt` .
2018-10-31 06:52:50 -03:00
2020-12-08 03:43:02 -03:00
###### Descriptor Wallet Support
2018-06-01 22:40:44 -04:00
2022-03-17 07:51:44 -03:00
`sqlite3` is required to support [descriptor wallets ](descriptors.md ).
Skip if you don't intend to use descriptor wallets.
2020-12-08 03:43:02 -03:00
``` bash
pkg install sqlite3
```
2022-03-17 07:51:44 -03:00
###### Legacy Wallet Support
`db5` is only required to support legacy wallets.
Skip if you don't intend to use legacy wallets.
```bash
pkg install db5
```
2020-12-08 03:43:02 -03:00
---
2019-02-15 08:54:59 -03:00
2020-12-08 03:43:02 -03:00
#### GUI Dependencies
###### Qt5
2019-02-15 08:54:59 -03:00
2020-12-08 03:43:02 -03: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 15:16:39 -03:00
```bash
2020-12-08 03:43:02 -03:00
pkg install qt5
2018-06-01 22:40:44 -04:00
```
2020-12-08 03:43:02 -03: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-18 22:52:48 -03: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 03:43:02 -03: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
pkg install python3
```
---
2018-06-01 22:40:44 -04:00
## Building Bitcoin Core
2020-12-08 03:43:02 -03:00
### 1. Configuration
2018-06-01 22:40:44 -04:00
2020-12-08 03:43:02 -03:00
There are many ways to configure Bitcoin Core, here are a few common examples:
2022-03-17 07:51:44 -03: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
`sqlite3` and `db5` are both installed.
2020-02-12 15:16:39 -03:00
```bash
2018-06-01 22:40:44 -04:00
./autogen.sh
2020-12-08 03:43:02 -03:00
./configure --with-gui=no --with-incompatible-bdb \
BDB_LIBS="-ldb_cxx-5" \
BDB_CFLAGS="-I/usr/local/include/db5" \
2020-02-12 15:16:39 -03:00
MAKE=gmake
2018-10-31 06:52:50 -03:00
```
2020-12-08 03:43:02 -03:00
##### No Wallet or GUI
``` bash
./autogen.sh
./configure --without-wallet --with-gui=no MAKE=gmake
2018-06-01 22:40:44 -04:00
```
2020-12-08 03:43:02 -03:00
### 2. Compile
**Important**: Use `gmake` (the non-GNU `make` will exit with an error).
2018-10-31 06:52:50 -03:00
2020-02-12 15:16:39 -03:00
```bash
2021-05-13 08:15:59 -04:00
gmake # use "-j N" for N parallel jobs
2019-02-15 08:54:59 -03:00
gmake check # Run tests if Python 3 is available
2018-10-31 06:52:50 -03:00
```