diff options
| author | Ross Nicoll <[email protected]> | 2018-01-20 18:35:31 +0000 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2019-03-25 05:36:12 +0000 |
| commit | 731b7a75c2bba4d4ba5a213ca5235ac334a998b0 (patch) | |
| tree | 99ab6f8e5a3bc0efa17b14fb6d69d623dd2edf12 /doc/build-osx.md | |
| parent | Rename and update man pages (#1451) (diff) | |
| download | discoin-731b7a75c2bba4d4ba5a213ca5235ac334a998b0.tar.xz discoin-731b7a75c2bba4d4ba5a213ca5235ac334a998b0.zip | |
Update documentation to match 1.10 (#1436)
Diffstat (limited to 'doc/build-osx.md')
| -rw-r--r-- | doc/build-osx.md | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/doc/build-osx.md b/doc/build-osx.md index 59ee125f7..4c8eb2611 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -25,17 +25,17 @@ If you want to build the disk image with `make deploy` (.dmg / optional), you ne NOTE: Building with Qt4 is still supported, however, could result in a broken UI. Building with Qt5 is recommended. -Build Bitcoin Core +Build Dogecoin Core ------------------------ -1. Clone the bitcoin source code and cd into `bitcoin` +1. Clone the dogecoin source code and cd into `dogecoin` - git clone https://github.com/bitcoin/bitcoin - cd bitcoin + git clone https://github.com/dogecoin/dogecoin + cd dogecoin -2. Build bitcoin-core: +2. Build dogecoin: - Configure and build the headless bitcoin binaries as well as the GUI (if Qt is found). + Configure and build the headless dogecoin binaries as well as the GUI (if Qt is found). You can disable the GUI build by passing `--without-gui` to configure. @@ -54,37 +54,37 @@ Build Bitcoin Core Running ------- -Bitcoin Core is now available at `./src/bitcoind` +Dogecoin Core is now available at `./src/dogecoind` Before running, it's recommended you create an RPC configuration file. - echo -e "rpcuser=bitcoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf" + echo -e "rpcuser=dogecoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Dogecoin/dogecoin.conf" - chmod 600 "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf" + chmod 600 "/Users/${USER}/Library/Application Support/Dogecoin/dogecoin.conf" -The first time you run bitcoind, it will start downloading the blockchain. This process could take several hours. +The first time you run dogecoind, 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: - tail -f $HOME/Library/Application\ Support/Bitcoin/debug.log + tail -f $HOME/Library/Application\ Support/Dogecoin/debug.log Other commands: ------- - ./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. + ./src/dogecoind -daemon # Starts the dogecoin daemon. + ./src/dogecoin-cli --help # Outputs a list of command-line options. + ./src/dogecoin-cli help # Outputs a list of RPC commands when the daemon is running. Using Qt Creator as IDE ------------------------ -You can use Qt Creator as an IDE, for bitcoin development. +You can use Qt Creator as an IDE, for dogecoin development. Download and install the community edition of [Qt Creator](https://www.qt.io/download/). Uncheck everything except Qt Creator during the installation process. 1. Make sure you installed everything through Homebrew mentioned above 2. Do a proper ./configure --enable-debug 3. In Qt Creator do "New Project" -> Import Project -> Import Existing Project -4. Enter "bitcoin-qt" as project name, enter src/qt as location +4. Enter "dogecoin-qt" as project name, enter src/qt as location 5. Leave the file selection as it is 6. Confirm the "summary page" 7. In the "Projects" tab select "Manage Kits..." @@ -97,4 +97,4 @@ Notes * Tested on OS X 10.8 through 10.12 on 64-bit Intel processors only. -* Building with downloaded Qt binaries is not officially supported. See the notes in [#7714](https://github.com/bitcoin/bitcoin/issues/7714) +* Building with downloaded Qt binaries is not officially supported. See the notes in [#7714](https://github.com/dogecoin/dogecoin/issues/7714) |