2018-06-05 15:47:25 +02:00
|
|
|
macOS Build Instructions and Notes
|
2012-12-12 17:52:38 +01:00
|
|
|
====================================
|
2016-06-02 10:45:11 +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
|
|
|
|
-----------
|
2018-06-05 15:47:25 +02:00
|
|
|
Install the macOS command line tools:
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-06-21 16:32:20 +02:00
|
|
|
`xcode-select --install`
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-06-21 16:32:20 +02:00
|
|
|
When the popup appears, click `Install`.
|
|
|
|
|
2017-05-02 18:48:58 +02:00
|
|
|
Then install [Homebrew](https://brew.sh).
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2018-09-28 09:55:46 +02:00
|
|
|
Base build dependencies
|
|
|
|
-----------------------
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2018-09-28 09:55:46 +02:00
|
|
|
```bash
|
2019-03-11 09:16:28 +01:00
|
|
|
brew install automake libtool pkg-config
|
2018-09-28 09:55:46 +02:00
|
|
|
```
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2017-05-02 18:48:58 +02:00
|
|
|
If you want to build the disk image with `make deploy` (.dmg / optional), you need RSVG
|
2018-09-28 09:55:46 +02:00
|
|
|
```bash
|
|
|
|
brew install librsvg
|
|
|
|
```
|
2017-01-02 09:42:51 +01:00
|
|
|
|
2018-09-28 09:55:46 +02:00
|
|
|
Building
|
|
|
|
--------
|
2017-01-02 09:42:51 +01:00
|
|
|
|
2021-03-12 20:40:05 +01:00
|
|
|
It's possible that your `PATH` environment variable contains some problematic strings, run
|
|
|
|
```bash
|
|
|
|
export PATH=$(echo "$PATH" | sed -e '/\\/!s/ /\\ /g') # fix whitespaces
|
|
|
|
```
|
|
|
|
|
|
|
|
Next, follow the instructions in [build-generic](build-generic.md)
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2018-09-07 14:24:19 +02:00
|
|
|
Disable-wallet mode
|
|
|
|
--------------------
|
|
|
|
When the intention is to run only a P2P node without a wallet, Bitcoin Core may be compiled in
|
|
|
|
disable-wallet mode with:
|
|
|
|
|
|
|
|
./configure --disable-wallet
|
|
|
|
|
|
|
|
In this case there is no dependency on Berkeley DB 4.8.
|
|
|
|
|
|
|
|
Mining is also possible in disable-wallet mode using the `getblocktemplate` RPC call.
|
|
|
|
|
2012-12-12 17:52:38 +01:00
|
|
|
Running
|
|
|
|
-------
|
|
|
|
|
2016-06-02 10:45:11 +02:00
|
|
|
Dash Core is now available at `./src/dashd`
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2018-11-08 18:56:36 +01:00
|
|
|
Before running, you may create an empty configuration file.
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2018-11-08 18:56:36 +01:00
|
|
|
touch "/Users/${USER}/Library/Application Support/DashCore/dash.conf"
|
2016-06-02 10:45:11 +02:00
|
|
|
|
2016-07-06 20:44:33 +02:00
|
|
|
chmod 600 "/Users/${USER}/Library/Application Support/DashCore/dash.conf"
|
2012-12-12 17:52:38 +01:00
|
|
|
|
2016-06-02 10:45:11 +02:00
|
|
|
The first time you run dashd, 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
|
|
|
|
2016-07-06 20:44:33 +02:00
|
|
|
tail -f $HOME/Library/Application\ Support/DashCore/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-06-02 10:45:11 +02:00
|
|
|
./src/dashd -daemon # Starts the dash daemon.
|
|
|
|
./src/dash-cli --help # Outputs a list of command-line options.
|
|
|
|
./src/dash-cli help # Outputs a list of RPC commands when the daemon is running.
|