2010-08-29 18:58:15 +02:00
|
|
|
UNIX BUILD NOTES
|
2013-05-20 06:30:00 +02:00
|
|
|
====================
|
2016-02-02 16:28:56 +01:00
|
|
|
Some notes on how to build Dash 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.)
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
Note
|
|
|
|
---------------------
|
|
|
|
Always use absolute paths to configure and compile Dash Core and the dependencies.
|
|
|
|
For example, when specifying the path of the dependency:
|
2014-05-19 12:42:57 +02:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
|
2011-01-25 15:29:13 +01:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
Here BDB_PREFIX must be an absolute path - it is defined using $(pwd) which ensures
|
|
|
|
the usage of the absolute path.
|
2011-04-23 11:49:47 +02:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
To Build
|
|
|
|
---------------------
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2018-09-28 09:55:46 +02:00
|
|
|
```bash
|
2023-05-27 19:45:04 +02:00
|
|
|
./autogen.sh
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
make install # optional
|
2018-09-28 09:55:46 +02:00
|
|
|
```
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
This will build dash-qt as well, if the dependencies are met.
|
|
|
|
|
|
|
|
Dependencies
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
These dependencies are required:
|
|
|
|
|
|
|
|
Library | Purpose | Description
|
|
|
|
------------|------------------|----------------------
|
|
|
|
libboost | Utility | Library for threading, data structures, etc
|
|
|
|
libevent | Networking | OS independent asynchronous networking
|
|
|
|
|
|
|
|
Optional dependencies:
|
|
|
|
|
|
|
|
Library | Purpose | Description
|
|
|
|
------------|------------------|----------------------
|
|
|
|
gmp | Optimized math routines | Arbitrary precision arithmetic library
|
|
|
|
miniupnpc | UPnP Support | Firewall-jumping support
|
|
|
|
libnatpmp | NAT-PMP Support | Firewall-jumping support
|
|
|
|
libdb4.8 | Berkeley DB | Wallet storage (only needed when wallet enabled)
|
|
|
|
qt | GUI | GUI toolkit (only needed when GUI enabled)
|
|
|
|
libqrencode | QR codes in GUI | Optional for generating QR codes (only needed when GUI enabled)
|
|
|
|
libzmq3 | ZMQ notification | Optional, allows generating ZMQ notifications (requires ZMQ version >= 4.0.0)
|
|
|
|
sqlite3 | SQLite DB | Wallet storage (only needed when wallet enabled)
|
|
|
|
|
|
|
|
For the versions used, see [dependencies.md](dependencies.md)
|
|
|
|
|
|
|
|
Memory Requirements
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
C++ compilers are memory-hungry. It is recommended to have at least 1.5 GB of
|
|
|
|
memory available when compiling Dash Core. On systems with less, gcc can be
|
|
|
|
tuned to conserve memory with additional CXXFLAGS:
|
|
|
|
|
|
|
|
|
|
|
|
./configure CXXFLAGS="--param ggc-min-expand=1 --param ggc-min-heapsize=32768"
|
|
|
|
|
2018-01-30 22:03:58 +01:00
|
|
|
|
|
|
|
## Linux Distribution Specific Instructions
|
|
|
|
|
|
|
|
### Ubuntu & Debian
|
|
|
|
|
|
|
|
#### Dependency Build Instructions
|
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
Build requirements:
|
|
|
|
|
2018-09-19 03:11:49 +02:00
|
|
|
sudo apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils bison python3
|
|
|
|
|
|
|
|
Now, you can either build from self-compiled [depends](/depends/README.md) or install the required dependencies:
|
|
|
|
|
|
|
|
sudo apt-get libevent-dev libboost-system-dev libboost-filesystem-dev libboost-test-dev libboost-thread-dev
|
2023-05-27 19:45:04 +02:00
|
|
|
|
2021-03-01 14:58:01 +01:00
|
|
|
Berkeley DB is required for the wallet.
|
2023-05-27 19:45:04 +02:00
|
|
|
|
|
|
|
Ubuntu and Debian have their own `libdb-dev` and `libdb++-dev` packages, but these will install
|
2021-03-01 14:58:01 +01:00
|
|
|
Berkeley DB 5.1 or later. This will break binary wallet compatibility with the distributed executables, which
|
2023-05-27 19:45:04 +02:00
|
|
|
are based on BerkeleyDB 4.8. If you do not care about wallet compatibility,
|
|
|
|
pass `--with-incompatible-bdb` to configure.
|
|
|
|
|
2021-03-01 14:58:01 +01:00
|
|
|
Otherwise, you can build Berkeley DB [yourself](#berkeley-db).
|
2019-03-03 17:22:36 +01:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
SQLite is required for the wallet:
|
|
|
|
|
|
|
|
sudo apt install libsqlite3-dev
|
|
|
|
|
2021-03-01 14:58:01 +01:00
|
|
|
To build Dash Core without wallet, see [*Disable-wallet mode*](#disable-wallet-mode)
|
|
|
|
|
2023-01-30 11:45:00 +01:00
|
|
|
Optional port mapping libraries (see: `--with-miniupnpc` and `--with-natpmp`):
|
2023-05-27 19:45:04 +02:00
|
|
|
|
|
|
|
sudo apt install libminiupnpc-dev libnatpmp-dev
|
|
|
|
|
|
|
|
ZMQ dependencies (provides ZMQ API):
|
|
|
|
|
|
|
|
sudo apt-get install libzmq3-dev
|
|
|
|
|
|
|
|
GMP dependencies (provides platform-optimized routines):
|
|
|
|
|
|
|
|
sudo apt-get install libgmp-dev
|
|
|
|
|
2018-09-19 03:11:49 +02:00
|
|
|
GUI dependencies:
|
2023-05-27 19:45:04 +02:00
|
|
|
|
|
|
|
If you want to build dash-qt, make sure that the required packages for Qt development
|
|
|
|
are installed. Qt 5 is necessary to build the GUI.
|
|
|
|
To build without GUI pass `--without-gui`.
|
|
|
|
|
|
|
|
To build with Qt 5 you need the following:
|
|
|
|
|
|
|
|
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools
|
|
|
|
|
Merge bitcoin/bitcoin#22631: doc: Add packages that provide Qt Wayland plugin for Linux
5559cf1460c98eb6998d99784f27de85f95f14d0 doc: Add packages that provide Qt Wayland plugin for Linux (Hennadii Stepanov)
Pull request description:
When building on Linux using system packages (without depends) the support of Wayland protocol for modern desktop environments (e.g., GNOME, KDE Plasma) depends on the presence of the installed Qt Wayland plugin which is loaded dynamically at the GUI startup.
1. On Debian/Ubuntu, the [`qtwayland5`](https://packages.ubuntu.com/focal/qtwayland5) package is required (also see this [patch](https://codereview.qt-project.org/c/qt/qtbase/+/231227), and this [doc](https://wiki.debian.org/Wayland#Qt_.28supported_since_5.29)):
- with `qtwayland5` installed:
```
$ QT_QPA_PLATFORM="wayland;xcb" ./src/qt/bitcoin-qt -printtoconsole
Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway.
2021-08-05T09:51:31Z Bitcoin Core version v22.99.0-c4b42aa4ffa1 (release build)
2021-08-05T09:51:31Z Qt 5.11.3 (dynamic), plugin=wayland (dynamic)
2021-08-05T09:51:31Z No static plugins.
2021-08-05T09:51:31Z Style: fusion / QFusionStyle
2021-08-05T09:51:31Z System: Debian GNU/Linux 10 (buster), x86_64-little_endian-lp64
...
```
- without `qtwayland5`:
```
$ QT_QPA_PLATFORM="wayland;xcb" ./src/qt/bitcoin-qt -printtoconsole
Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway.
qt.qpa.plugin: Could not find the Qt platform plugin "wayland" in ""
2021-08-05T09:48:55Z Bitcoin Core version v22.99.0-c4b42aa4ffa1 (release build)
2021-08-05T09:48:55Z Qt 5.11.3 (dynamic), plugin=xcb (dynamic)
2021-08-05T09:48:55Z No static plugins.
2021-08-05T09:48:55Z Style: fusion / QFusionStyle
2021-08-05T09:48:55Z System: Debian GNU/Linux 10 (buster), x86_64-little_endian-lp64
2021-08-05T09:48:55Z Screen: XWAYLAND0 1920x1200, pixel ratio=1.0
...
```
2. On Fedora, the [`qt5-qtwayland`](https://fedora.pkgs.org/34/fedora-x86_64/qt5-qtwayland-5.15.2-4.fc34.x86_64.rpm.html) package is required:
- with `qt5-qtwayland` installed:
```
$ ./src/qt/bitcoin-qt -printtoconsole
QSocketNotifier: Can only be used with threads started with QThread
2021-08-05T08:41:03Z Bitcoin Core version v22.99.0-c4b42aa4ffa1 (release build)
2021-08-05T08:41:03Z Qt 5.15.2 (dynamic), plugin=wayland (dynamic)
2021-08-05T08:41:03Z No static plugins.
2021-08-05T08:41:03Z Style: fusion / QFusionStyle
2021-08-05T08:41:03Z System: Fedora 34 (Workstation Edition), x86_64-little_endian-lp64
...
```
- without `qt5-qtwayland`:
```
$ ./src/qt/bitcoin-qt -printtoconsole
qt.qpa.plugin: Could not find the Qt platform plugin "wayland" in ""
2021-08-05T07:50:41Z Bitcoin Core version v22.99.0-c4b42aa4ffa1 (release build)
2021-08-05T07:50:41Z Qt 5.15.2 (dynamic), plugin=xcb (dynamic)
2021-08-05T07:50:41Z No static plugins.
2021-08-05T07:50:41Z Style: fusion / QFusionStyle
2021-08-05T07:50:41Z System: Fedora 34 (Workstation Edition), x86_64-little_endian-lp64
2021-08-05T07:50:41Z Screen: XWAYLAND0 1920x1200, pixel ratio=1.0
...
```
ACKs for top commit:
fanquake:
ACK 5559cf1460c98eb6998d99784f27de85f95f14d0 - I don't think there's any harm to point this out in our Linux build docs. It's not changing our binaries or dependencies in any way.
Tree-SHA512: e26856586b29540b55c12905a091408e95ce59ea2c952520086b41138c955fba1b78e95e868f75205af07c6eccae51644177f7165d837ae058aaf0c0abf3ccf5
2021-09-02 05:25:32 +02:00
|
|
|
Additionally, to support Wayland protocol for modern desktop environments:
|
|
|
|
|
|
|
|
sudo apt install qtwayland5
|
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
libqrencode (optional) can be installed with:
|
|
|
|
|
|
|
|
sudo apt-get install libqrencode-dev
|
|
|
|
|
|
|
|
Once these are installed, they will be found by configure and a dash-qt executable will be
|
|
|
|
built by default.
|
|
|
|
|
|
|
|
|
2018-01-30 22:03:58 +01:00
|
|
|
### Fedora
|
|
|
|
|
|
|
|
#### Dependency Build Instructions
|
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
Build requirements:
|
|
|
|
|
2021-03-01 14:58:01 +01:00
|
|
|
sudo dnf install gcc-c++ libtool make autoconf automake python3
|
|
|
|
|
|
|
|
Now, you can either build from self-compiled [depends](/depends/README.md) or install the required dependencies:
|
|
|
|
|
|
|
|
sudo dnf install libevent-devel boost-devel
|
|
|
|
|
|
|
|
Berkeley DB is required for the wallet:
|
|
|
|
|
|
|
|
sudo dnf install libdb4-devel libdb4-cxx-devel
|
|
|
|
|
|
|
|
Newer Fedora releases, since Fedora 33, have only `libdb-devel` and `libdb-cxx-devel` packages, but these will install
|
|
|
|
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,
|
|
|
|
pass `--with-incompatible-bdb` to configure.
|
|
|
|
|
|
|
|
Otherwise, you can build Berkeley DB [yourself](#berkeley-db).
|
|
|
|
|
|
|
|
SQLite is required for the wallet:
|
|
|
|
|
|
|
|
sudo dnf install sqlite-devel
|
|
|
|
|
|
|
|
To build Dash Core without wallet, see [*Disable-wallet mode*](#disable-wallet-mode)
|
2023-05-27 19:45:04 +02:00
|
|
|
|
2023-01-30 11:45:00 +01:00
|
|
|
Optional port mapping libraries (see: `--with-miniupnpc` and `--with-natpmp`):
|
2023-05-27 19:45:04 +02:00
|
|
|
|
|
|
|
sudo dnf install miniupnpc-devel libnatpmp-devel
|
|
|
|
|
|
|
|
ZMQ dependencies (provides ZMQ API):
|
|
|
|
|
|
|
|
sudo dnf install zeromq-devel
|
|
|
|
|
|
|
|
GMP dependencies (provides platform-optimized routines):
|
|
|
|
|
|
|
|
sudo dnf install gmp-devel
|
|
|
|
|
|
|
|
GUI dependencies:
|
|
|
|
|
|
|
|
If you want to build dash-qt, make sure that the required packages for Qt development
|
|
|
|
are installed. Qt 5 is necessary to build the GUI.
|
|
|
|
To build without GUI pass `--without-gui`.
|
|
|
|
|
|
|
|
To build with Qt 5 you need the following:
|
|
|
|
|
|
|
|
sudo dnf install qt5-qttools-devel qt5-qtbase-devel
|
|
|
|
|
Merge bitcoin/bitcoin#22631: doc: Add packages that provide Qt Wayland plugin for Linux
5559cf1460c98eb6998d99784f27de85f95f14d0 doc: Add packages that provide Qt Wayland plugin for Linux (Hennadii Stepanov)
Pull request description:
When building on Linux using system packages (without depends) the support of Wayland protocol for modern desktop environments (e.g., GNOME, KDE Plasma) depends on the presence of the installed Qt Wayland plugin which is loaded dynamically at the GUI startup.
1. On Debian/Ubuntu, the [`qtwayland5`](https://packages.ubuntu.com/focal/qtwayland5) package is required (also see this [patch](https://codereview.qt-project.org/c/qt/qtbase/+/231227), and this [doc](https://wiki.debian.org/Wayland#Qt_.28supported_since_5.29)):
- with `qtwayland5` installed:
```
$ QT_QPA_PLATFORM="wayland;xcb" ./src/qt/bitcoin-qt -printtoconsole
Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway.
2021-08-05T09:51:31Z Bitcoin Core version v22.99.0-c4b42aa4ffa1 (release build)
2021-08-05T09:51:31Z Qt 5.11.3 (dynamic), plugin=wayland (dynamic)
2021-08-05T09:51:31Z No static plugins.
2021-08-05T09:51:31Z Style: fusion / QFusionStyle
2021-08-05T09:51:31Z System: Debian GNU/Linux 10 (buster), x86_64-little_endian-lp64
...
```
- without `qtwayland5`:
```
$ QT_QPA_PLATFORM="wayland;xcb" ./src/qt/bitcoin-qt -printtoconsole
Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway.
qt.qpa.plugin: Could not find the Qt platform plugin "wayland" in ""
2021-08-05T09:48:55Z Bitcoin Core version v22.99.0-c4b42aa4ffa1 (release build)
2021-08-05T09:48:55Z Qt 5.11.3 (dynamic), plugin=xcb (dynamic)
2021-08-05T09:48:55Z No static plugins.
2021-08-05T09:48:55Z Style: fusion / QFusionStyle
2021-08-05T09:48:55Z System: Debian GNU/Linux 10 (buster), x86_64-little_endian-lp64
2021-08-05T09:48:55Z Screen: XWAYLAND0 1920x1200, pixel ratio=1.0
...
```
2. On Fedora, the [`qt5-qtwayland`](https://fedora.pkgs.org/34/fedora-x86_64/qt5-qtwayland-5.15.2-4.fc34.x86_64.rpm.html) package is required:
- with `qt5-qtwayland` installed:
```
$ ./src/qt/bitcoin-qt -printtoconsole
QSocketNotifier: Can only be used with threads started with QThread
2021-08-05T08:41:03Z Bitcoin Core version v22.99.0-c4b42aa4ffa1 (release build)
2021-08-05T08:41:03Z Qt 5.15.2 (dynamic), plugin=wayland (dynamic)
2021-08-05T08:41:03Z No static plugins.
2021-08-05T08:41:03Z Style: fusion / QFusionStyle
2021-08-05T08:41:03Z System: Fedora 34 (Workstation Edition), x86_64-little_endian-lp64
...
```
- without `qt5-qtwayland`:
```
$ ./src/qt/bitcoin-qt -printtoconsole
qt.qpa.plugin: Could not find the Qt platform plugin "wayland" in ""
2021-08-05T07:50:41Z Bitcoin Core version v22.99.0-c4b42aa4ffa1 (release build)
2021-08-05T07:50:41Z Qt 5.15.2 (dynamic), plugin=xcb (dynamic)
2021-08-05T07:50:41Z No static plugins.
2021-08-05T07:50:41Z Style: fusion / QFusionStyle
2021-08-05T07:50:41Z System: Fedora 34 (Workstation Edition), x86_64-little_endian-lp64
2021-08-05T07:50:41Z Screen: XWAYLAND0 1920x1200, pixel ratio=1.0
...
```
ACKs for top commit:
fanquake:
ACK 5559cf1460c98eb6998d99784f27de85f95f14d0 - I don't think there's any harm to point this out in our Linux build docs. It's not changing our binaries or dependencies in any way.
Tree-SHA512: e26856586b29540b55c12905a091408e95ce59ea2c952520086b41138c955fba1b78e95e868f75205af07c6eccae51644177f7165d837ae058aaf0c0abf3ccf5
2021-09-02 05:25:32 +02:00
|
|
|
Additionally, to support Wayland protocol for modern desktop environments:
|
|
|
|
|
|
|
|
sudo dnf install qt5-qtwayland
|
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
libqrencode (optional) can be installed with:
|
|
|
|
|
|
|
|
sudo dnf install qrencode-devel
|
|
|
|
|
2021-03-01 14:58:01 +01:00
|
|
|
Once these are installed, they will be found by configure and a dash-qt executable will be
|
|
|
|
built by default.
|
2023-05-27 19:45:04 +02:00
|
|
|
|
|
|
|
Notes
|
|
|
|
-----
|
|
|
|
The release is built with GCC and then "strip dashd" to strip the debug
|
|
|
|
symbols, which reduces the executable size by about 90%.
|
|
|
|
|
|
|
|
|
|
|
|
miniupnpc
|
|
|
|
---------
|
|
|
|
|
|
|
|
[miniupnpc](https://miniupnp.tuxfamily.org) may be used for UPnP port mapping. It can be downloaded from [here](
|
|
|
|
https://miniupnp.tuxfamily.org/files/). UPnP support is compiled in and
|
2023-01-30 11:45:00 +01:00
|
|
|
turned off by default.
|
2023-05-27 19:45:04 +02:00
|
|
|
|
|
|
|
libnatpmp
|
|
|
|
---------
|
|
|
|
|
|
|
|
[libnatpmp](https://miniupnp.tuxfamily.org/libnatpmp.html) may be used for NAT-PMP port mapping. It can be downloaded
|
|
|
|
from [here](https://miniupnp.tuxfamily.org/files/). NAT-PMP support is compiled in and
|
2023-01-30 11:45:00 +01:00
|
|
|
turned off by default.
|
2023-05-27 19:45:04 +02:00
|
|
|
|
|
|
|
Berkeley DB
|
|
|
|
-----------
|
2023-04-25 05:23:50 +02:00
|
|
|
It is recommended to use Berkeley DB 4.8. If you have to build it yourself,
|
|
|
|
you can use [the installation script included in contrib/](contrib/install_db4.sh)
|
|
|
|
like so:
|
2019-09-27 20:25:58 +02:00
|
|
|
|
2023-04-25 05:23:50 +02:00
|
|
|
```shell
|
|
|
|
./contrib/install_db4.sh `pwd`
|
2018-09-28 09:55:46 +02:00
|
|
|
```
|
2013-05-20 06:30:00 +02:00
|
|
|
|
2023-04-25 05:23:50 +02:00
|
|
|
from the root of the repository.
|
|
|
|
|
2021-03-01 14:58:01 +01:00
|
|
|
Otherwise, you can build Dash Core from self-compiled [depends](/depends/README.md).
|
|
|
|
|
|
|
|
**Note**: You only need Berkeley DB if the wallet is enabled (see [*Disable-wallet mode*](#disable-wallet-mode)).
|
2023-04-25 05:23:50 +02:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
Boost
|
|
|
|
-----
|
|
|
|
If you need to build Boost yourself:
|
2017-07-09 13:15:45 +02:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
sudo su
|
|
|
|
./bootstrap.sh
|
|
|
|
./bjam install
|
2011-09-08 18:50:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
Security
|
|
|
|
--------
|
2018-08-02 16:22:47 +02:00
|
|
|
To help make your Dash Core installation more secure by making certain attacks impossible to
|
2013-05-28 01:55:01 +02:00
|
|
|
exploit even if a vulnerability is found, binaries are hardened by default.
|
|
|
|
This can be disabled with:
|
|
|
|
|
2013-12-09 11:08:08 +01:00
|
|
|
Hardening Flags:
|
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
./configure --enable-hardening
|
|
|
|
./configure --disable-hardening
|
2013-05-28 01:55:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
Hardening enables the following features:
|
2018-10-28 11:41:40 +01:00
|
|
|
* _Position Independent Executable_: Build position independent code to take advantage of Address Space Layout Randomization
|
2015-04-28 16:48:28 +02:00
|
|
|
offered by some kernels. Attackers who can cause execution of code at an arbitrary memory
|
|
|
|
location are thwarted if they don't know where anything useful is located.
|
2018-08-02 16:22:47 +02:00
|
|
|
The stack and heap are randomly located by default, but this allows the code section to be
|
2011-09-08 18:50:54 +02:00
|
|
|
randomly located as well.
|
|
|
|
|
2015-04-28 16:48:28 +02:00
|
|
|
On an AMD64 processor where a library was not compiled with -fPIC, this will cause an error
|
2011-09-08 18:50:54 +02:00
|
|
|
such as: "relocation R_X86_64_32 against `......' can not be used when making a shared object;"
|
|
|
|
|
|
|
|
To test that you have built PIE executable, install scanelf, part of paxutils, and use:
|
2013-05-20 06:30:00 +02:00
|
|
|
|
2015-05-22 05:10:13 +02:00
|
|
|
scanelf -e ./dashd
|
2011-09-08 18:50:54 +02:00
|
|
|
|
|
|
|
The output should contain:
|
2015-11-04 13:22:45 +01:00
|
|
|
|
2011-09-08 18:50:54 +02:00
|
|
|
TYPE
|
|
|
|
ET_DYN
|
|
|
|
|
2018-10-28 11:41:40 +01:00
|
|
|
* _Non-executable Stack_: If the stack is executable then trivial stack-based buffer overflow exploits are possible if
|
2018-08-02 16:22:47 +02:00
|
|
|
vulnerable buffers are found. By default, Dash Core should be built with a non-executable stack,
|
2011-09-08 18:50:54 +02:00
|
|
|
but if one of the libraries it uses asks for an executable stack or someone makes a mistake
|
|
|
|
and uses a compiler extension which requires an executable stack, it will silently build an
|
|
|
|
executable without the non-executable stack protection.
|
|
|
|
|
|
|
|
To verify that the stack is non-executable after compiling use:
|
2015-05-22 05:10:13 +02:00
|
|
|
`scanelf -e ./dashd`
|
2011-09-08 18:50:54 +02:00
|
|
|
|
2018-08-02 16:22:47 +02:00
|
|
|
The output should contain:
|
2013-05-20 06:30:00 +02:00
|
|
|
STK/REL/PTL
|
|
|
|
RW- R-- RW-
|
2011-09-08 18:50:54 +02:00
|
|
|
|
|
|
|
The STK RW- means that the stack is readable and writeable but not executable.
|
2013-11-29 18:37:29 +01:00
|
|
|
|
|
|
|
Disable-wallet mode
|
|
|
|
--------------------
|
2016-08-19 13:46:30 +02:00
|
|
|
When the intention is to run only a P2P node without a wallet, Dash Core may be compiled in
|
2013-11-29 18:37:29 +01:00
|
|
|
disable-wallet mode with:
|
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
./configure --disable-wallet
|
2013-11-29 18:37:29 +01:00
|
|
|
|
2023-02-04 19:26:20 +01:00
|
|
|
In this case there is no dependency on Berkeley DB 4.8 and SQLite.
|
2013-12-08 15:26:08 +01:00
|
|
|
|
2018-09-07 14:24:19 +02:00
|
|
|
Mining is also possible in disable-wallet mode using the `getblocktemplate` RPC call.
|
2016-03-30 16:29:56 +02:00
|
|
|
|
|
|
|
Additional Configure Flags
|
|
|
|
--------------------------
|
|
|
|
A list of additional configure flags can be displayed with:
|
|
|
|
|
|
|
|
./configure --help
|
|
|
|
|
2016-10-13 10:19:29 +02:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
Setup and Build Example: Arch Linux
|
|
|
|
-----------------------------------
|
|
|
|
This example lists the steps necessary to setup and build a command line only, non-wallet distribution of the latest changes on Arch Linux:
|
2016-10-13 10:19:29 +02:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
pacman -S git base-devel boost libevent python
|
|
|
|
git clone https://github.com/dashpay/dash.git
|
|
|
|
cd dash/
|
|
|
|
./autogen.sh
|
|
|
|
./configure --disable-wallet --without-gui --without-miniupnpc
|
|
|
|
make check
|
|
|
|
|
|
|
|
Note:
|
|
|
|
Enabling wallet support requires either compiling against a Berkeley DB newer than 4.8 (package `db`) using `--with-incompatible-bdb`,
|
|
|
|
or building and depending on a local version of Berkeley DB 4.8. The readily available Arch Linux packages are currently built using
|
|
|
|
`--with-incompatible-bdb` according to the [PKGBUILD](https://projects.archlinux.org/svntogit/community.git/tree/bitcoin/trunk/PKGBUILD).
|
|
|
|
As mentioned above, when maintaining portability of the wallet between the standard Dash Core distributions and independently built
|
|
|
|
node software is desired, Berkeley DB 4.8 must be used.
|
2016-10-13 10:19:29 +02:00
|
|
|
|
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
ARM Cross-compilation
|
2018-09-28 09:55:46 +02:00
|
|
|
-------------------
|
2023-05-27 19:45:04 +02:00
|
|
|
These steps can be performed on, for example, an Ubuntu VM. The depends system
|
|
|
|
will also work on other Linux distributions, however the commands for
|
|
|
|
installing the toolchain will be different.
|
2016-10-13 10:19:29 +02:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
Make sure you install the build requirements mentioned above.
|
|
|
|
Then, install the toolchain and curl:
|
2016-10-13 10:19:29 +02:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
sudo apt-get install g++-arm-linux-gnueabihf curl
|
2016-10-13 10:19:29 +02:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
To build executables for ARM:
|
2019-09-25 11:03:06 +02:00
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
cd depends
|
|
|
|
make HOST=arm-linux-gnueabihf NO_QT=1
|
|
|
|
cd ..
|
2021-04-13 15:11:35 +02:00
|
|
|
./autogen.sh
|
|
|
|
CONFIG_SITE=$PWD/depends/arm-linux-gnueabihf/share/config.site ./configure --enable-reduce-exports LDFLAGS=-static-libstdc++
|
2023-05-27 19:45:04 +02:00
|
|
|
make
|
2019-09-25 11:03:06 +02:00
|
|
|
|
|
|
|
|
2023-05-27 19:45:04 +02:00
|
|
|
For further documentation on the depends system see [README.md](../depends/README.md) in the depends directory.
|