2013-06-16 12:29:23 +02:00
|
|
|
Mac OS X Build Instructions and Notes
|
2012-12-12 17:52:38 +01:00
|
|
|
====================================
|
2016-05-09 10:30:27 +02:00
|
|
|
The commands in this guide should be executed in a Terminal application.
|
|
|
|
The built-in one is located in `/Applications/Utilities/Terminal.app`.
|
2012-12-12 17:52:38 +01:00
|
|
|
|
|
|
|
Preparation
|
|
|
|
-----------
|
2016-06-12 06:59:02 +02:00
|
|
|
Install the OS X command line tools:
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-06-12 06:59:02 +02:00
|
|
|
`xcode-select --install`
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-06-12 06:59:02 +02:00
|
|
|
When the popup appears, click `Install`.
|
|
|
|
|
2017-04-23 02:47:12 +02:00
|
|
|
Then install [Homebrew](https://brew.sh).
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
Dependencies
|
2012-12-12 17:52:38 +01:00
|
|
|
----------------------
|
|
|
|
|
2018-04-01 19:31:04 +02:00
|
|
|
brew install automake berkeley-db4 libtool boost miniupnpc openssl pkg-config protobuf python qt libevent qrencode
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2017-07-09 13:15:45 +02:00
|
|
|
See [dependencies.md](dependencies.md) for a complete overview.
|
|
|
|
|
2017-04-23 02:47:12 +02:00
|
|
|
If you want to build the disk image with `make deploy` (.dmg / optional), you need RSVG
|
2016-12-23 09:52:08 +01:00
|
|
|
|
|
|
|
brew install librsvg
|
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
NOTE: Building with Qt4 is still supported, however, could result in a broken UI. Building with Qt5 is recommended.
|
2015-01-14 03:10:39 +01:00
|
|
|
|
2017-11-16 08:36:08 +01:00
|
|
|
Berkeley DB
|
|
|
|
-----------
|
|
|
|
It is recommended to use Berkeley DB 4.8. If you have to build it yourself,
|
2017-12-20 13:39:16 +01:00
|
|
|
you can use [the installation script included in contrib/](/contrib/install_db4.sh)
|
2017-11-16 08:36:08 +01:00
|
|
|
like so
|
|
|
|
|
|
|
|
```shell
|
|
|
|
./contrib/install_db4.sh .
|
|
|
|
```
|
|
|
|
|
|
|
|
from the root of the repository.
|
|
|
|
|
|
|
|
**Note**: You only need Berkeley DB if the wallet is enabled (see the section *Disable-Wallet mode* below).
|
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
Build Bitcoin Core
|
|
|
|
------------------------
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
1. Clone the bitcoin source code and cd into `bitcoin`
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
git clone https://github.com/bitcoin/bitcoin
|
2012-12-12 17:52:38 +01:00
|
|
|
cd bitcoin
|
|
|
|
|
2015-11-17 15:14:36 +01:00
|
|
|
2. Build bitcoin-core:
|
2016-05-09 10:30:27 +02:00
|
|
|
|
|
|
|
Configure and build the headless bitcoin binaries as well as the GUI (if Qt is found).
|
|
|
|
|
|
|
|
You can disable the GUI build by passing `--without-gui` to configure.
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2013-11-11 04:11:33 +01:00
|
|
|
./autogen.sh
|
2015-11-17 15:14:36 +01:00
|
|
|
./configure
|
2013-11-11 04:11:33 +01:00
|
|
|
make
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
3. It is recommended to build and run the unit tests:
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2013-12-11 23:11:21 +01:00
|
|
|
make check
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
4. You can also create a .dmg that contains the .app bundle (optional):
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
make deploy
|
2012-12-12 17:52:38 +01:00
|
|
|
|
|
|
|
Running
|
|
|
|
-------
|
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
Bitcoin Core is now available at `./src/bitcoind`
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
Before running, it's recommended you create an RPC configuration file.
|
2012-12-12 17:52:38 +01:00
|
|
|
|
|
|
|
echo -e "rpcuser=bitcoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf"
|
2016-05-09 10:30:27 +02:00
|
|
|
|
2012-12-12 17:52:38 +01:00
|
|
|
chmod 600 "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf"
|
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
The first time you run bitcoind, it will start downloading the blockchain. This process could take several hours.
|
|
|
|
|
|
|
|
You can monitor the download process by looking at the debug.log file:
|
2014-02-26 03:35:48 +01:00
|
|
|
|
|
|
|
tail -f $HOME/Library/Application\ Support/Bitcoin/debug.log
|
2012-12-12 17:52:38 +01:00
|
|
|
|
|
|
|
Other commands:
|
2014-06-28 10:43:07 +02:00
|
|
|
-------
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
./src/bitcoind -daemon # Starts the bitcoin daemon.
|
|
|
|
./src/bitcoin-cli --help # Outputs a list of command-line options.
|
|
|
|
./src/bitcoin-cli help # Outputs a list of RPC commands when the daemon is running.
|
|
|
|
|
|
|
|
Notes
|
|
|
|
-----
|
|
|
|
|
2017-11-30 08:17:19 +01:00
|
|
|
* Tested on OS X 10.8 through 10.13 on 64-bit Intel processors only.
|
2016-04-02 18:54:12 +02:00
|
|
|
|
2016-05-09 10:30:27 +02:00
|
|
|
* Building with downloaded Qt binaries is not officially supported. See the notes in [#7714](https://github.com/bitcoin/bitcoin/issues/7714)
|