2022-03-23 12:33:50 -03:00
|
|
|
# OpenBSD Build Guide
|
2015-09-28 06:24:23 -03:00
|
|
|
|
2024-12-18 16:47:41 -03:00
|
|
|
**Updated for OpenBSD [7.6](https://www.openbsd.org/76.html)**
|
2015-09-28 06:24:23 -03:00
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
This guide describes how to build bitcoind, command-line utilities, and GUI on OpenBSD.
|
2015-09-28 06:24:23 -03:00
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
## Preparation
|
|
|
|
|
|
|
|
### 1. Install Required Dependencies
|
|
|
|
Run the following as root to install the base dependencies for building.
|
2015-09-28 06:24:23 -03:00
|
|
|
|
|
|
|
```bash
|
2024-07-24 06:55:19 -04:00
|
|
|
pkg_add git cmake boost libevent
|
2022-03-23 12:33:50 -03:00
|
|
|
```
|
2017-10-02 23:15:55 -03:00
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
See [dependencies.md](dependencies.md) for a complete overview.
|
|
|
|
|
|
|
|
### 2. Clone Bitcoin Repo
|
|
|
|
Clone the Bitcoin Core repository to a directory. All build scripts and commands will run from this directory.
|
|
|
|
``` bash
|
2017-10-02 23:15:55 -03:00
|
|
|
git clone https://github.com/bitcoin/bitcoin.git
|
2015-09-28 06:24:23 -03:00
|
|
|
```
|
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
### 3. Install Optional Dependencies
|
2015-09-28 06:24:23 -03:00
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
#### Wallet Dependencies
|
2015-09-28 06:24:23 -03:00
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
It is not necessary to build wallet functionality to run either `bitcoind` or `bitcoin-qt`.
|
|
|
|
|
|
|
|
###### Descriptor Wallet Support
|
|
|
|
|
2024-07-24 06:55:19 -04:00
|
|
|
SQLite is required to support [descriptor wallets](descriptors.md).
|
2022-03-23 12:33:50 -03:00
|
|
|
|
|
|
|
``` bash
|
2022-06-07 17:04:20 -04:00
|
|
|
pkg_add sqlite3
|
2022-03-23 12:33:50 -03:00
|
|
|
```
|
2015-09-28 06:24:23 -03:00
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
###### Legacy Wallet Support
|
|
|
|
BerkeleyDB is only required to support legacy wallets.
|
2015-09-28 06:24:23 -03:00
|
|
|
|
2017-11-16 01:26:02 -03:00
|
|
|
It is recommended to use Berkeley DB 4.8. You cannot use the BerkeleyDB library
|
2023-01-06 06:14:02 -03:00
|
|
|
from ports. However you can build it yourself, [using depends](/depends).
|
2015-09-28 06:24:23 -03:00
|
|
|
|
2024-02-26 11:32:52 -03:00
|
|
|
Refer to [depends/README.md](/depends/README.md) for detailed instructions.
|
|
|
|
|
2020-02-12 15:16:39 -03:00
|
|
|
```bash
|
2024-10-21 19:32:32 -03:00
|
|
|
gmake -C depends NO_BOOST=1 NO_LIBEVENT=1 NO_QT=1 NO_SQLITE=1 NO_ZMQ=1 NO_USDT=1
|
2023-01-06 06:14:02 -03:00
|
|
|
...
|
2024-07-24 06:55:19 -04:00
|
|
|
to: /path/to/bitcoin/depends/*-unknown-openbsd*
|
2015-09-28 06:24:23 -03:00
|
|
|
```
|
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
Then set `BDB_PREFIX`:
|
2016-08-26 11:26:09 -03:00
|
|
|
|
2020-02-12 15:16:39 -03:00
|
|
|
```bash
|
2024-07-24 06:55:19 -04:00
|
|
|
export BDB_PREFIX="[path displayed above]"
|
2017-12-22 05:44:32 -03:00
|
|
|
```
|
2016-08-26 11:26:09 -03:00
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
#### GUI Dependencies
|
|
|
|
###### Qt5
|
|
|
|
|
2024-07-24 06:55:19 -04:00
|
|
|
Bitcoin Core includes a GUI built with the cross-platform Qt Framework. To compile the GUI, we need to install
|
|
|
|
the necessary parts of Qt, the libqrencode and pass `-DBUILD_GUI=ON`. Skip if you don't intend to use the GUI.
|
2022-03-23 12:33:50 -03:00
|
|
|
|
|
|
|
```bash
|
2024-04-23 18:56:18 -04:00
|
|
|
pkg_add qtbase qttools
|
2022-03-23 12:33:50 -03:00
|
|
|
```
|
|
|
|
|
2024-07-30 16:27:06 -04:00
|
|
|
###### libqrencode
|
|
|
|
|
2024-07-24 06:55:19 -04:00
|
|
|
The GUI will be able to encode addresses in QR codes unless this feature is explicitly disabled. To install libqrencode, run:
|
|
|
|
|
2024-07-30 16:27:06 -04:00
|
|
|
```bash
|
|
|
|
pkg_add libqrencode
|
|
|
|
```
|
2024-07-24 06:55:19 -04:00
|
|
|
|
|
|
|
Otherwise, if you don't need QR encoding support, use the `-DWITH_QRENCODE=OFF` option to disable this feature in order to compile the GUI.
|
|
|
|
|
2024-07-30 16:27:06 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
#### Notifications
|
|
|
|
###### ZeroMQ
|
|
|
|
|
|
|
|
Bitcoin Core can provide notifications via ZeroMQ. If the package is installed, support will be compiled in.
|
|
|
|
```bash
|
|
|
|
pkg_add zeromq
|
|
|
|
```
|
|
|
|
|
2024-07-24 06:55:19 -04: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:
|
2015-09-28 06:24:23 -03:00
|
|
|
|
|
|
|
```bash
|
2024-12-18 16:47:41 -03:00
|
|
|
pkg_add python py3-zmq # Select the newest version of the python package if necessary.
|
2015-09-28 06:24:23 -03:00
|
|
|
```
|
2022-03-23 12:33:50 -03:00
|
|
|
|
2024-07-24 06:55:19 -04:00
|
|
|
## Building Bitcoin Core
|
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
### 1. Configuration
|
2015-09-28 06:24:23 -03:00
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
There are many ways to configure Bitcoin Core, here are a few common examples:
|
|
|
|
|
|
|
|
##### Descriptor Wallet and GUI:
|
2024-07-24 06:55:19 -04:00
|
|
|
This enables descriptor wallet support and the GUI, assuming SQLite and Qt 5 are installed.
|
2015-09-28 06:24:23 -03:00
|
|
|
|
|
|
|
```bash
|
2024-07-24 06:55:19 -04:00
|
|
|
cmake -B build -DWITH_SQLITE=ON -DBUILD_GUI=ON
|
2015-09-28 06:24:23 -03:00
|
|
|
```
|
|
|
|
|
2024-07-24 06:55:19 -04:00
|
|
|
Run `cmake -B build -LH` to see the full list of available options.
|
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
##### Descriptor & Legacy Wallet. No GUI:
|
2024-07-24 06:55:19 -04:00
|
|
|
This enables support for both wallet types:
|
2022-03-23 12:33:50 -03:00
|
|
|
|
2020-09-06 23:16:57 -03:00
|
|
|
```bash
|
2024-08-31 16:53:59 -04:00
|
|
|
cmake -B build -DBerkeleyDB_INCLUDE_DIR:PATH="${BDB_PREFIX}/include" -DWITH_BDB=ON
|
2020-09-06 23:16:57 -03:00
|
|
|
```
|
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
### 2. Compile
|
|
|
|
|
2015-09-28 06:24:23 -03:00
|
|
|
```bash
|
2024-07-24 06:55:19 -04:00
|
|
|
cmake --build build # Use "-j N" for N parallel jobs.
|
|
|
|
ctest --test-dir build # Use "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
|
2015-09-28 06:24:23 -03:00
|
|
|
```
|
|
|
|
|
2022-03-23 12:33:50 -03:00
|
|
|
## Resource limits
|
2015-09-28 06:24:23 -03:00
|
|
|
|
2017-12-22 05:44:32 -03:00
|
|
|
If the build runs into out-of-memory errors, the instructions in this section
|
|
|
|
might help.
|
|
|
|
|
|
|
|
The standard ulimit restrictions in OpenBSD are very strict:
|
2022-03-23 12:33:50 -03:00
|
|
|
```bash
|
|
|
|
data(kbytes) 1572864
|
|
|
|
```
|
2017-12-22 05:44:32 -03:00
|
|
|
|
2018-10-25 16:58:08 -03:00
|
|
|
This is, unfortunately, in some cases not enough to compile some `.cpp` files in the project,
|
2017-12-22 05:44:32 -03:00
|
|
|
(see issue [#6658](https://github.com/bitcoin/bitcoin/issues/6658)).
|
|
|
|
If your user is in the `staff` group the limit can be raised with:
|
2022-03-23 12:33:50 -03:00
|
|
|
```bash
|
|
|
|
ulimit -d 3000000
|
|
|
|
```
|
2017-12-22 05:44:32 -03:00
|
|
|
The change will only affect the current shell and processes spawned by it. To
|
|
|
|
make the change system-wide, change `datasize-cur` and `datasize-max` in
|
|
|
|
`/etc/login.conf`, and reboot.
|