2015-04-22 06:06:39 +02:00
|
|
|
### Usage
|
|
|
|
|
|
|
|
To build dependencies for the current arch+OS:
|
|
|
|
|
|
|
|
make
|
|
|
|
|
|
|
|
To build for another arch/OS:
|
|
|
|
|
|
|
|
make HOST=host-platform-triplet
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
make HOST=x86_64-w64-mingw32 -j4
|
|
|
|
|
2016-03-06 16:26:01 +01:00
|
|
|
A prefix will be generated that's suitable for plugging into Dash's
|
2015-10-08 21:21:54 +02:00
|
|
|
configure. In the above example, a dir named x86_64-w64-mingw32 will be
|
2016-03-06 16:26:01 +01:00
|
|
|
created. To use it for Dash:
|
2015-04-22 06:06:39 +02:00
|
|
|
|
|
|
|
./configure --prefix=`pwd`/depends/x86_64-w64-mingw32
|
|
|
|
|
|
|
|
Common `host-platform-triplets` for cross compilation are:
|
|
|
|
|
|
|
|
- `x86_64-w64-mingw32` for Win64
|
2021-10-02 05:09:55 +02:00
|
|
|
- `x86_64-apple-darwin19` for macOS
|
2018-01-19 11:33:39 +01:00
|
|
|
- `arm-linux-gnueabihf` for Linux ARM 32 bit
|
|
|
|
- `aarch64-linux-gnu` for Linux ARM 64 bit
|
2018-07-10 14:47:48 +02:00
|
|
|
- `riscv32-linux-gnu` for Linux RISC-V 32 bit
|
|
|
|
- `riscv64-linux-gnu` for Linux RISC-V 64 bit
|
2015-04-22 06:06:39 +02:00
|
|
|
|
|
|
|
No other options are needed, the paths are automatically configured.
|
|
|
|
|
2021-09-18 02:33:28 +02:00
|
|
|
### Install the required dependencies: Ubuntu & Debian
|
2017-12-22 20:49:07 +01:00
|
|
|
|
2021-09-18 02:33:28 +02:00
|
|
|
#### For macOS cross compilation
|
2017-12-22 20:49:07 +01:00
|
|
|
|
2021-09-01 17:55:14 +02:00
|
|
|
sudo apt-get install curl librsvg2-bin libtiff-tools bsdmainutils imagemagick libcap-dev libz-dev libbz2-dev python3-setuptools libtinfo5
|
2017-12-22 20:49:07 +01:00
|
|
|
|
2021-04-29 12:52:12 +02:00
|
|
|
Note: You must obtain the macOS SDK before proceeding with a cross-compile.
|
|
|
|
Under the depends directory, create a subdirectory named `SDKs`.
|
|
|
|
Then, place the extracted SDK under this new directory.
|
|
|
|
For more information, see [SDK Extraction](../contrib/macdeploy/README.md#sdk-extraction).
|
|
|
|
|
2021-09-18 02:33:28 +02:00
|
|
|
#### For Win64 cross compilation
|
2017-12-22 20:49:07 +01:00
|
|
|
|
|
|
|
- see [build-windows.md](../doc/build-windows.md#cross-compilation-for-ubuntu-and-windows-subsystem-for-linux)
|
|
|
|
|
2021-09-18 02:33:28 +02:00
|
|
|
#### For linux (including i386, ARM) cross compilation
|
2017-12-22 20:49:07 +01:00
|
|
|
|
2021-09-18 02:33:28 +02:00
|
|
|
Common linux dependencies:
|
|
|
|
|
2019-05-20 12:52:35 +02:00
|
|
|
sudo apt-get install make automake cmake curl g++-multilib libtool binutils-gold bsdmainutils pkg-config python3 patch
|
2021-09-18 02:33:28 +02:00
|
|
|
|
|
|
|
For linux ARM cross compilation:
|
|
|
|
|
|
|
|
sudo apt-get install g++-arm-linux-gnueabihf binutils-arm-linux-gnueabihf
|
|
|
|
|
|
|
|
For linux AARCH64 cross compilation:
|
|
|
|
|
|
|
|
sudo apt-get install g++-aarch64-linux-gnu binutils-aarch64-linux-gnu
|
2017-12-22 20:49:07 +01:00
|
|
|
|
2018-07-10 14:47:48 +02:00
|
|
|
For linux RISC-V 64-bit cross compilation (there are no packages for 32-bit):
|
|
|
|
|
2021-09-18 02:33:28 +02:00
|
|
|
sudo apt-get install g++-riscv64-linux-gnu binutils-riscv64-linux-gnu
|
2018-07-10 14:47:48 +02:00
|
|
|
|
|
|
|
RISC-V known issue: gcc-7.3.0 and gcc-7.3.1 result in a broken `test_dash` executable (see https://github.com/bitcoin/bitcoin/pull/13543),
|
|
|
|
this is apparently fixed in gcc-8.1.0.
|
2017-12-22 20:49:07 +01:00
|
|
|
|
2021-09-18 02:33:28 +02:00
|
|
|
### Dependency Options
|
2021-08-26 11:34:32 +02:00
|
|
|
The following can be set when running make: `make FOO=bar`
|
|
|
|
|
|
|
|
<dl>
|
|
|
|
<dt>SOURCES_PATH</dt>
|
|
|
|
<dd>downloaded sources will be placed here</dd>
|
|
|
|
<dt>BASE_CACHE</dt>
|
|
|
|
<dd>built packages will be placed here</dd>
|
|
|
|
<dt>SDK_PATH</dt>
|
|
|
|
<dd>Path where sdk's can be found (used by macOS)</dd>
|
|
|
|
<dt>FALLBACK_DOWNLOAD_PATH</dt>
|
|
|
|
<dd>If a source file can't be fetched, try here before giving up</dd>
|
|
|
|
<dt>NO_QT</dt>
|
|
|
|
<dd>Don't download/build/cache qt and its dependencies</dd>
|
|
|
|
<dt>NO_WALLET</dt>
|
|
|
|
<dd>Don't download/build/cache libs needed to enable the wallet</dd>
|
|
|
|
<dt>NO_UPNP</dt>
|
|
|
|
<dd>Don't download/build/cache packages needed for enabling upnp</dd>
|
|
|
|
<dt>DEBUG</dt>
|
|
|
|
<dd>disable some optimizations and enable more runtime checking</dd>
|
|
|
|
<dt>HOST_ID_SALT</dt>
|
|
|
|
<dd>Optional salt to use when generating host package ids</dd>
|
|
|
|
<dt>BUILD_ID_SALT</dt>
|
|
|
|
<dd>Optional salt to use when generating build package ids</dd>
|
|
|
|
<dt>FORCE_USE_SYSTEM_CLANG</dt>
|
2020-07-31 02:24:14 +02:00
|
|
|
<dd>(EXPERTS ONLY) When cross-compiling for macOS, use Clang found in the
|
|
|
|
system's <code>$PATH</code> rather than the default prebuilt release of Clang
|
|
|
|
from llvm.org. Clang 8 or later is required.</dd>
|
2021-08-26 11:34:32 +02:00
|
|
|
</dl>
|
2015-04-22 06:06:39 +02:00
|
|
|
If some packages are not built, for example `make NO_WALLET=1`, the appropriate
|
2016-08-19 13:46:30 +02:00
|
|
|
options will be passed to Dash Core's configure. In this case, `--disable-wallet`.
|
2015-04-22 06:06:39 +02:00
|
|
|
|
2021-09-18 02:33:28 +02:00
|
|
|
### Additional targets
|
2015-04-22 06:06:39 +02:00
|
|
|
|
|
|
|
download: run 'make download' to fetch all sources without building them
|
2018-06-05 15:47:25 +02:00
|
|
|
download-osx: run 'make download-osx' to fetch all sources needed for macOS builds
|
2015-04-22 06:06:39 +02:00
|
|
|
download-win: run 'make download-win' to fetch all sources needed for win builds
|
|
|
|
download-linux: run 'make download-linux' to fetch all sources needed for linux builds
|
|
|
|
|
|
|
|
### Other documentation
|
|
|
|
|
|
|
|
- [description.md](description.md): General description of the depends system
|
|
|
|
- [packages.md](packages.md): Steps for adding packages
|
|
|
|
|