Merge #12092: [qt] Replaces numbered place marker %2 with %1.
[bitcoinplatinum.git] / depends / README.md
blob99eef1952c6d896f6b2215141c3e7b05cbdfa0e9
1 ### Usage
3 To build dependencies for the current arch+OS:
5     make
7 To build for another arch/OS:
9     make HOST=host-platform-triplet
11 For example:
13     make HOST=x86_64-w64-mingw32 -j4
15 A prefix will be generated that's suitable for plugging into Bitcoin's
16 configure. In the above example, a dir named x86_64-w64-mingw32 will be
17 created. To use it for Bitcoin:
19     ./configure --prefix=`pwd`/depends/x86_64-w64-mingw32
21 Common `host-platform-triplets` for cross compilation are:
23 - `i686-w64-mingw32` for Win32
24 - `x86_64-w64-mingw32` for Win64
25 - `x86_64-apple-darwin11` for MacOSX
26 - `arm-linux-gnueabihf` for Linux ARM 32 bit
27 - `aarch64-linux-gnu` for Linux ARM 64 bit
29 No other options are needed, the paths are automatically configured.
31 Install the required dependencies: Ubuntu & Debian
32 --------------------------------------------------
34 For macOS cross compilation:
36     sudo apt-get install curl librsvg2-bin libtiff-tools bsdmainutils cmake imagemagick libcap-dev libz-dev libbz2-dev python-setuptools
38 For Win32/Win64 cross compilation:
40 - see [build-windows.md](../doc/build-windows.md#cross-compilation-for-ubuntu-and-windows-subsystem-for-linux)
42 For linux (including i386, ARM) cross compilation:
44     sudo apt-get install curl g++-aarch64-linux-gnu g++-4.8-aarch64-linux-gnu gcc-4.8-aarch64-linux-gnu binutils-aarch64-linux-gnu g++-arm-linux-gnueabihf g++-4.8-arm-linux-gnueabihf gcc-4.8-arm-linux-gnueabihf binutils-arm-linux-gnueabihf g++-4.8-multilib gcc-4.8-multilib binutils-gold bsdmainutils
47 Dependency Options:
48 The following can be set when running make: make FOO=bar
50     SOURCES_PATH: downloaded sources will be placed here
51     BASE_CACHE: built packages will be placed here
52     SDK_PATH: Path where sdk's can be found (used by OSX)
53     FALLBACK_DOWNLOAD_PATH: If a source file can't be fetched, try here before giving up
54     NO_QT: Don't download/build/cache qt and its dependencies
55     NO_WALLET: Don't download/build/cache libs needed to enable the wallet
56     NO_UPNP: Don't download/build/cache packages needed for enabling upnp
57     DEBUG: disable some optimizations and enable more runtime checking
58     HOST_ID_SALT: Optional salt to use when generating host package ids
59     BUILD_ID_SALT: Optional salt to use when generating build package ids
61 If some packages are not built, for example `make NO_WALLET=1`, the appropriate
62 options will be passed to bitcoin's configure. In this case, `--disable-wallet`.
64 Additional targets:
66     download: run 'make download' to fetch all sources without building them
67     download-osx: run 'make download-osx' to fetch all sources needed for osx builds
68     download-win: run 'make download-win' to fetch all sources needed for win builds
69     download-linux: run 'make download-linux' to fetch all sources needed for linux builds
71 ### Other documentation
73 - [description.md](description.md): General description of the depends system
74 - [packages.md](packages.md): Steps for adding packages