2010-08-29 18:58:15 +02:00
|
|
|
UNIX BUILD NOTES
|
2013-05-20 06:30:00 +02:00
|
|
|
====================
|
2015-11-03 11:36:09 +01:00
|
|
|
Some notes on how to build Bitcoin Core in Unix.
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2018-06-02 04:40:44 +02:00
|
|
|
(For BSD specific instructions, see `build-*bsd.md` in this directory.)
|
2015-09-28 11:24:23 +02:00
|
|
|
|
2011-01-25 15:29:13 +01:00
|
|
|
To Build
|
2013-05-20 06:30:00 +02:00
|
|
|
---------------------
|
2011-01-25 15:29:13 +01:00
|
|
|
|
2014-09-30 19:48:40 +02:00
|
|
|
```bash
|
2024-07-24 12:55:19 +02:00
|
|
|
cmake -B build
|
|
|
|
cmake --build build # use "-j N" for N parallel jobs
|
|
|
|
cmake --install build # optional
|
2014-09-30 19:48:40 +02:00
|
|
|
```
|
2011-04-23 11:49:47 +02:00
|
|
|
|
2023-05-17 13:20:02 +02:00
|
|
|
See below for instructions on how to [install the dependencies on popular Linux
|
|
|
|
distributions](#linux-distribution-specific-instructions), or the
|
|
|
|
[dependencies](#dependencies) section for a complete overview.
|
2011-10-09 11:04:35 +02:00
|
|
|
|
2023-05-17 13:20:02 +02:00
|
|
|
## Memory Requirements
|
2014-03-31 05:59:11 +02:00
|
|
|
|
2016-01-28 04:17:02 +01:00
|
|
|
C++ compilers are memory-hungry. It is recommended to have at least 1.5 GB of
|
|
|
|
memory available when compiling Bitcoin Core. On systems with less, gcc can be
|
2024-07-24 12:55:19 +02:00
|
|
|
tuned to conserve memory with additional `CMAKE_CXX_FLAGS`:
|
2016-01-28 04:17:02 +01:00
|
|
|
|
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
cmake -B build -DCMAKE_CXX_FLAGS="--param ggc-min-expand=1 --param ggc-min-heapsize=32768"
|
2014-03-31 05:59:11 +02:00
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
Alternatively, or in addition, debugging information can be skipped for compilation.
|
|
|
|
For the default build type `RelWithDebInfo`, the default compile flags are
|
|
|
|
`-O2 -g`, and can be changed with:
|
2019-08-12 15:03:18 +02:00
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
cmake -B build -DCMAKE_CXX_FLAGS_RELWITHDEBINFO="-O2 -g0"
|
2019-08-12 15:03:18 +02:00
|
|
|
|
|
|
|
Finally, clang (often less resource hungry) can be used instead of gcc, which is used by default:
|
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
cmake -B build -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_CC_COMPILER=clang
|
2018-01-30 22:55:31 +01:00
|
|
|
|
|
|
|
## Linux Distribution Specific Instructions
|
|
|
|
|
|
|
|
### Ubuntu & Debian
|
|
|
|
|
|
|
|
#### Dependency Build Instructions
|
|
|
|
|
2012-08-30 05:19:00 +02:00
|
|
|
Build requirements:
|
2013-05-20 06:30:00 +02:00
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
sudo apt-get install build-essential cmake pkg-config bsdmainutils python3
|
2018-09-19 03:11:49 +02:00
|
|
|
|
2023-05-17 13:20:02 +02:00
|
|
|
Now, you can either build from self-compiled [depends](#dependencies) or install the required dependencies:
|
2018-09-19 03:11:49 +02:00
|
|
|
|
2022-02-09 19:15:10 +01:00
|
|
|
sudo apt-get install libevent-dev libboost-dev
|
2015-11-03 11:36:09 +01:00
|
|
|
|
2021-03-01 14:58:01 +01:00
|
|
|
SQLite is required for the descriptor wallet:
|
2020-09-30 18:24:12 +02:00
|
|
|
|
|
|
|
sudo apt install libsqlite3-dev
|
|
|
|
|
2023-05-17 13:20:02 +02:00
|
|
|
Berkeley DB is only required for the legacy wallet. Ubuntu and Debian have their own `libdb-dev` and `libdb++-dev` packages,
|
2023-08-07 14:11:51 +02:00
|
|
|
but these will install Berkeley DB 5.3 or later. This will break binary wallet compatibility with the distributed
|
2024-07-24 12:55:19 +02:00
|
|
|
executables, which are based on BerkeleyDB 4.8. Otherwise, you can build Berkeley DB [yourself](#berkeley-db).
|
2021-11-05 18:22:43 +01:00
|
|
|
|
2021-03-01 14:58:01 +01:00
|
|
|
To build Bitcoin Core without wallet, see [*Disable-wallet mode*](#disable-wallet-mode)
|
2018-10-25 21:58:08 +02:00
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
Optional port mapping libraries (see: `-DWITH_MINIUPNPC=ON` and `-DWITH_NATPMP=ON`):
|
2013-05-20 06:30:00 +02:00
|
|
|
|
2020-02-23 01:35:10 +01:00
|
|
|
sudo apt install libminiupnpc-dev libnatpmp-dev
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2018-06-30 16:32:33 +02:00
|
|
|
ZMQ dependencies (provides ZMQ API):
|
2015-09-29 19:48:45 +02:00
|
|
|
|
2016-11-23 08:46:46 +01:00
|
|
|
sudo apt-get install libzmq3-dev
|
2015-09-29 19:48:45 +02:00
|
|
|
|
2021-06-07 18:24:11 +02:00
|
|
|
User-Space, Statically Defined Tracing (USDT) dependencies:
|
|
|
|
|
|
|
|
sudo apt install systemtap-sdt-dev
|
|
|
|
|
2018-09-19 03:11:49 +02:00
|
|
|
GUI dependencies:
|
2013-10-15 14:34:12 +02:00
|
|
|
|
2024-07-24 12:55:19 +02: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.
|
2013-10-15 14:34:12 +02:00
|
|
|
|
2024-03-29 09:25:50 +01:00
|
|
|
sudo apt-get install qtbase5-dev qttools5-dev qttools5-dev-tools
|
2013-10-15 14:34:12 +02:00
|
|
|
|
2021-08-05 10:28:53 +02:00
|
|
|
Additionally, to support Wayland protocol for modern desktop environments:
|
|
|
|
|
|
|
|
sudo apt install qtwayland5
|
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
The GUI will be able to encode addresses in QR codes unless this feature is explicitly disabled. To install libqrencode, run:
|
2013-10-15 14:34:12 +02:00
|
|
|
|
2014-03-19 21:33:13 +01:00
|
|
|
sudo apt-get install libqrencode-dev
|
2013-10-15 14:34:12 +02:00
|
|
|
|
2024-07-24 12:55:19 +02: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.
|
2011-03-26 13:01:27 +01:00
|
|
|
|
2018-01-30 22:55:31 +01:00
|
|
|
|
|
|
|
### Fedora
|
|
|
|
|
|
|
|
#### Dependency Build Instructions
|
|
|
|
|
2016-04-29 00:07:31 +02:00
|
|
|
Build requirements:
|
|
|
|
|
2021-03-01 14:58:01 +01:00
|
|
|
sudo dnf install gcc-c++ libtool make autoconf automake python3
|
|
|
|
|
2023-05-17 13:20:02 +02:00
|
|
|
Now, you can either build from self-compiled [depends](#dependencies) or install the required dependencies:
|
2021-03-01 14:58:01 +01:00
|
|
|
|
|
|
|
sudo dnf install libevent-devel boost-devel
|
|
|
|
|
2021-11-05 18:22:43 +01:00
|
|
|
SQLite is required for the descriptor wallet:
|
|
|
|
|
|
|
|
sudo dnf install sqlite-devel
|
|
|
|
|
2023-08-07 14:11:51 +02:00
|
|
|
Berkeley DB is only required for the legacy wallet. Fedora releases have only `libdb-devel` and `libdb-cxx-devel` packages, but these will install
|
2021-03-01 14:58:01 +01:00
|
|
|
Berkeley DB 5.3 or later. This will break binary wallet compatibility with the distributed executables, which
|
|
|
|
are based on Berkeley DB 4.8. If you do not care about wallet compatibility,
|
2021-11-05 18:22:43 +01:00
|
|
|
pass `--with-incompatible-bdb` to configure. Otherwise, you can build Berkeley DB [yourself](#berkeley-db).
|
2021-03-01 14:58:01 +01:00
|
|
|
|
|
|
|
To build Bitcoin Core without wallet, see [*Disable-wallet mode*](#disable-wallet-mode)
|
2016-04-29 00:07:31 +02:00
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
Optional port mapping libraries (see: `-DWITH_MINIUPNPC=ON` and `-DWITH_NATPMP=ON`):
|
2016-04-29 00:07:31 +02:00
|
|
|
|
2020-02-23 01:35:10 +01:00
|
|
|
sudo dnf install miniupnpc-devel libnatpmp-devel
|
2016-04-29 00:07:31 +02:00
|
|
|
|
2019-08-18 14:54:48 +02:00
|
|
|
ZMQ dependencies (provides ZMQ API):
|
|
|
|
|
|
|
|
sudo dnf install zeromq-devel
|
|
|
|
|
2021-06-07 18:24:11 +02:00
|
|
|
User-Space, Statically Defined Tracing (USDT) dependencies:
|
|
|
|
|
2023-07-20 12:36:02 +02:00
|
|
|
sudo dnf install systemtap-sdt-devel
|
2021-06-07 18:24:11 +02:00
|
|
|
|
2021-03-01 14:58:01 +01:00
|
|
|
GUI dependencies:
|
|
|
|
|
2024-07-24 12:55:19 +02: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.
|
2016-04-29 00:07:31 +02:00
|
|
|
|
2019-09-10 03:08:17 +02:00
|
|
|
sudo dnf install qt5-qttools-devel qt5-qtbase-devel
|
2016-04-29 00:07:31 +02:00
|
|
|
|
2021-08-05 10:28:53 +02:00
|
|
|
Additionally, to support Wayland protocol for modern desktop environments:
|
|
|
|
|
|
|
|
sudo dnf install qt5-qtwayland
|
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
The GUI will be able to encode addresses in QR codes unless this feature is explicitly disabled. To install libqrencode, run:
|
2016-04-29 00:07:31 +02:00
|
|
|
|
|
|
|
sudo dnf install qrencode-devel
|
|
|
|
|
2024-07-24 12:55:19 +02: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.
|
2020-09-30 18:24:12 +02:00
|
|
|
|
2023-05-17 13:20:02 +02:00
|
|
|
## Dependencies
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2023-05-17 13:20:02 +02:00
|
|
|
See [dependencies.md](dependencies.md) for a complete overview, and
|
|
|
|
[depends](/depends/README.md) on how to compile them yourself, if you wish to
|
|
|
|
not use the packages of your Linux distribution.
|
2014-11-19 16:15:39 +01:00
|
|
|
|
2023-05-17 13:20:02 +02:00
|
|
|
### Berkeley DB
|
2021-11-05 18:22:43 +01:00
|
|
|
|
|
|
|
The legacy wallet uses Berkeley DB. To ensure backwards compatibility it is
|
2023-01-06 10:14:02 +01:00
|
|
|
recommended to use Berkeley DB 4.8. If you have to build it yourself, and don't
|
|
|
|
want to use any other libraries built in depends, you can do:
|
|
|
|
```bash
|
|
|
|
make -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
|
|
|
|
...
|
|
|
|
to: /path/to/bitcoin/depends/x86_64-pc-linux-gnu
|
2014-05-01 09:56:36 +02:00
|
|
|
```
|
2023-01-06 10:14:02 +01:00
|
|
|
and configure using the following:
|
|
|
|
```bash
|
|
|
|
export BDB_PREFIX="/path/to/bitcoin/depends/x86_64-pc-linux-gnu"
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
cmake -B build -DBerkeleyDB_INCLUDE_DIR:PATH="${BDB_PREFIX}/include"
|
2023-01-06 10:14:02 +01:00
|
|
|
```
|
2021-03-01 14:58:01 +01:00
|
|
|
|
2023-05-17 13:20:02 +02:00
|
|
|
**Note**: Make sure that `BDB_PREFIX` is an absolute path.
|
|
|
|
|
2022-03-18 11:27:49 +01:00
|
|
|
**Note**: You only need Berkeley DB if the legacy wallet is enabled (see [*Disable-wallet mode*](#disable-wallet-mode)).
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-11-29 18:37:29 +01:00
|
|
|
Disable-wallet mode
|
|
|
|
--------------------
|
2022-03-18 11:27:49 +01:00
|
|
|
When the intention is to only run a P2P node, without a wallet, Bitcoin Core can
|
|
|
|
be compiled in disable-wallet mode with:
|
2013-11-29 18:37:29 +01:00
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
cmake -B build -DENABLE_WALLET=OFF
|
2013-11-29 18:37:29 +01:00
|
|
|
|
2022-03-18 11:27:49 +01:00
|
|
|
In this case there is no dependency on SQLite or Berkeley DB.
|
2013-12-08 15:26:08 +01:00
|
|
|
|
2018-09-05 21:21:18 +02:00
|
|
|
Mining is also possible in disable-wallet mode using the `getblocktemplate` RPC call.
|
2016-01-28 18:10:15 +01:00
|
|
|
|
|
|
|
Additional Configure Flags
|
|
|
|
--------------------------
|
|
|
|
A list of additional configure flags can be displayed with:
|
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
cmake -B build -LH
|
2016-03-30 16:29:56 +02:00
|
|
|
|
|
|
|
|
2016-04-09 02:15:41 +02:00
|
|
|
Setup and Build Example: Arch Linux
|
|
|
|
-----------------------------------
|
2022-06-19 09:18:31 +02:00
|
|
|
This example lists the steps necessary to setup and build a command line only distribution of the latest changes on Arch Linux:
|
2016-04-09 02:15:41 +02:00
|
|
|
|
2024-07-24 12:55:19 +02:00
|
|
|
pacman --sync --needed cmake boost gcc git libevent make pkgconf python sqlite
|
2016-04-09 02:15:41 +02:00
|
|
|
git clone https://github.com/bitcoin/bitcoin.git
|
|
|
|
cd bitcoin/
|
2024-07-24 12:55:19 +02:00
|
|
|
cmake -B build
|
|
|
|
cmake --build build
|
|
|
|
ctest --test-dir build
|
|
|
|
./build/src/bitcoind
|
2016-04-09 02:15:41 +02:00
|
|
|
|
2022-06-19 09:18:31 +02:00
|
|
|
If you intend to work with legacy Berkeley DB wallets, see [Berkeley DB](#berkeley-db) section.
|