2022-03-23 15:33:50 +00:00
|
|
|
# OpenBSD Build Guide
|
2015-09-28 11:24:23 +02:00
|
|
|
|
2024-04-23 23:56:18 +01:00
|
|
|
**Updated for OpenBSD [7.5](https://www.openbsd.org/75.html)**
|
2015-09-28 11:24:23 +02:00
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
This guide describes how to build bitcoind, command-line utilities, and GUI on OpenBSD.
|
2015-09-28 11:24:23 +02:00
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
## Preparation
|
|
|
|
|
|
|
|
### 1. Install Required Dependencies
|
|
|
|
Run the following as root to install the base dependencies for building.
|
2015-09-28 11:24:23 +02:00
|
|
|
|
|
|
|
```bash
|
2024-07-24 11:55:19 +01:00
|
|
|
pkg_add git cmake boost libevent
|
2022-03-23 15:33:50 +00:00
|
|
|
```
|
2017-10-03 10:15:55 +08:00
|
|
|
|
2022-03-23 15:33:50 +00: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-03 10:15:55 +08:00
|
|
|
git clone https://github.com/bitcoin/bitcoin.git
|
2015-09-28 11:24:23 +02:00
|
|
|
```
|
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
### 3. Install Optional Dependencies
|
2015-09-28 11:24:23 +02:00
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
#### Wallet Dependencies
|
2015-09-28 11:24:23 +02:00
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
It is not necessary to build wallet functionality to run either `bitcoind` or `bitcoin-qt`.
|
|
|
|
|
|
|
|
###### Descriptor Wallet Support
|
|
|
|
|
2024-07-24 11:55:19 +01:00
|
|
|
SQLite is required to support [descriptor wallets](descriptors.md).
|
2022-03-23 15:33:50 +00:00
|
|
|
|
|
|
|
``` bash
|
2022-06-07 23:04:20 +02:00
|
|
|
pkg_add sqlite3
|
2022-03-23 15:33:50 +00:00
|
|
|
```
|
2015-09-28 11:24:23 +02:00
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
###### Legacy Wallet Support
|
|
|
|
BerkeleyDB is only required to support legacy wallets.
|
2015-09-28 11:24:23 +02:00
|
|
|
|
2017-11-15 20:26:02 -08:00
|
|
|
It is recommended to use Berkeley DB 4.8. You cannot use the BerkeleyDB library
|
2023-01-06 09:14:02 +00:00
|
|
|
from ports. However you can build it yourself, [using depends](/depends).
|
2015-09-28 11:24:23 +02:00
|
|
|
|
2024-02-26 14:32:52 +00:00
|
|
|
Refer to [depends/README.md](/depends/README.md) for detailed instructions.
|
|
|
|
|
2020-02-12 18:16:39 +00:00
|
|
|
```bash
|
2024-05-05 16:49:16 +02:00
|
|
|
gmake -C depends NO_BOOST=1 NO_LIBEVENT=1 NO_QT=1 NO_SQLITE=1 NO_UPNP=1 NO_ZMQ=1 NO_USDT=1
|
2023-01-06 09:14:02 +00:00
|
|
|
...
|
2024-07-24 11:55:19 +01:00
|
|
|
to: /path/to/bitcoin/depends/*-unknown-openbsd*
|
2015-09-28 11:24:23 +02:00
|
|
|
```
|
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
Then set `BDB_PREFIX`:
|
2016-08-26 16:26:09 +02:00
|
|
|
|
2020-02-12 18:16:39 +00:00
|
|
|
```bash
|
2024-07-24 11:55:19 +01:00
|
|
|
export BDB_PREFIX="[path displayed above]"
|
2017-12-22 09:44:32 +01:00
|
|
|
```
|
2016-08-26 16:26:09 +02:00
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
#### GUI Dependencies
|
|
|
|
###### Qt5
|
|
|
|
|
2024-07-24 11:55:19 +01: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 15:33:50 +00:00
|
|
|
|
|
|
|
```bash
|
2024-04-23 23:56:18 +01:00
|
|
|
pkg_add qtbase qttools
|
2022-03-23 15:33:50 +00:00
|
|
|
```
|
|
|
|
|
2024-07-30 22:27:06 +02:00
|
|
|
###### libqrencode
|
|
|
|
|
2024-07-24 11:55:19 +01: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 22:27:06 +02:00
|
|
|
```bash
|
|
|
|
pkg_add libqrencode
|
|
|
|
```
|
2024-07-24 11:55:19 +01: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 22:27:06 +02: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 11:55:19 +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:
|
2015-09-28 11:24:23 +02:00
|
|
|
|
|
|
|
```bash
|
2024-08-31 17:50:08 -04:00
|
|
|
pkg_add python # Select the newest version of the package.
|
2015-09-28 11:24:23 +02:00
|
|
|
```
|
2022-03-23 15:33:50 +00:00
|
|
|
|
2024-07-24 11:55:19 +01:00
|
|
|
## Building Bitcoin Core
|
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
### 1. Configuration
|
2015-09-28 11:24:23 +02:00
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
There are many ways to configure Bitcoin Core, here are a few common examples:
|
|
|
|
|
|
|
|
##### Descriptor Wallet and GUI:
|
2024-07-24 11:55:19 +01:00
|
|
|
This enables descriptor wallet support and the GUI, assuming SQLite and Qt 5 are installed.
|
2015-09-28 11:24:23 +02:00
|
|
|
|
|
|
|
```bash
|
2024-07-24 11:55:19 +01:00
|
|
|
cmake -B build -DWITH_SQLITE=ON -DBUILD_GUI=ON
|
2015-09-28 11:24:23 +02:00
|
|
|
```
|
|
|
|
|
2024-07-24 11:55:19 +01:00
|
|
|
Run `cmake -B build -LH` to see the full list of available options.
|
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
##### Descriptor & Legacy Wallet. No GUI:
|
2024-07-24 11:55:19 +01:00
|
|
|
This enables support for both wallet types:
|
2022-03-23 15:33:50 +00:00
|
|
|
|
2020-09-06 21:16:57 -05: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 21:16:57 -05:00
|
|
|
```
|
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
### 2. Compile
|
|
|
|
|
2015-09-28 11:24:23 +02:00
|
|
|
```bash
|
2024-07-24 11:55:19 +01: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 11:24:23 +02:00
|
|
|
```
|
|
|
|
|
2022-03-23 15:33:50 +00:00
|
|
|
## Resource limits
|
2015-09-28 11:24:23 +02:00
|
|
|
|
2017-12-22 09:44:32 +01: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 15:33:50 +00:00
|
|
|
```bash
|
|
|
|
data(kbytes) 1572864
|
|
|
|
```
|
2017-12-22 09:44:32 +01:00
|
|
|
|
2018-10-25 21:58:08 +02:00
|
|
|
This is, unfortunately, in some cases not enough to compile some `.cpp` files in the project,
|
2017-12-22 09:44:32 +01: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 15:33:50 +00:00
|
|
|
```bash
|
|
|
|
ulimit -d 3000000
|
|
|
|
```
|
2017-12-22 09:44:32 +01: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.
|