]> Git Repo - VerusCoin.git/blob - depends/README.usage
Merge pull request #4599
[VerusCoin.git] / depends / README.usage
1 To build dependencies for the current arch+OS:
2     make
3 To build for another arch/OS:
4   make HOST=host-platform-triplet && make HOST=host-platform-triplet
5   (For example: make HOST=i686-w64-mingw32 -j4)
6
7 A prefix will be generated that's suitable for plugging into Bitcoin's
8 configure. In the above example, a dir named i686-w64-mingw32 will be
9 created. To use it for Bitcoin:
10
11 ./configure --prefix=`pwd`/depends/i686-w64-mingw32
12
13 No other options are needed, the paths are automatically configured.
14
15 Dependency Options:
16 The following can be set when running make: make FOO=bar
17
18 SOURCES_PATH: downloaded sources will be placed here
19 BASE_CACHE: built packages will be placed here
20 SDK_PATH: Path where sdk's can be found (used by OSX)
21 FALLBACK_DOWNLOAD_PATH: If a source file can't be fetched, try here before giving up
22 NO_QT: Don't download/build/cache qt and its dependencies
23 NO_WALLET: Don't download/build/cache libs needed to enable the wallet
24 NO_UPNP: Don't download/build/cache packages needed for enabling upnp
25
26 If some packages are not built, for example 'make NO_WALLET=1', the appropriate
27 options will be passed to bitcoin's configure. In this case, --disable-wallet.
28
29 Additional targets:
30 download: run 'make download' to fetch sources without building them
This page took 0.024637 seconds and 4 git commands to generate.