2013-06-16 12:29:23 +02:00
Mac OS X Build Instructions and Notes
2012-12-12 17:52:38 +01:00
====================================
2014-11-27 17:26:22 +01:00
This guide will show you how to build darkcoind(headless client) for OSX.
2012-12-12 17:52:38 +01:00
Notes
-----
2014-02-26 03:35:48 +01:00
* Tested on OS X 10.6 through 10.9 on 64-bit Intel processors only.
Older OSX releases or 32-bit processors are no longer supported.
2013-06-16 12:29:23 +02:00
* All of the commands should be executed in a Terminal application. The
2012-12-12 17:52:38 +01:00
built-in one is located in `/Applications/Utilities` .
Preparation
-----------
You need to install XCode with all the options checked so that the compiler
and everything is available in /usr not just /Developer. XCode should be
available on your OS X installation media, but if not, you can get the
current version from https://developer.apple.com/xcode/. If you install
Xcode 4.3 or later, you'll need to install its command line tools. This can
be done in `Xcode > Preferences > Downloads > Components` and generally must
be re-done or updated every time Xcode is updated.
There's an assumption that you already have `git` installed, as well. If
2013-05-22 06:34:18 +02:00
not, it's the path of least resistance to install [Github for Mac ](https://mac.github.com/ )
2012-12-12 17:52:38 +01:00
(OS X 10.7+) or
[Git for OS X ](https://code.google.com/p/git-osx-installer/ ). It is also
2014-09-18 11:52:38 +02:00
available via Homebrew.
2012-12-12 17:52:38 +01:00
2014-01-19 13:43:15 +01:00
You will also need to install [Homebrew ](http://brew.sh )
2014-09-18 11:52:38 +02:00
in order to install library dependencies.
2012-12-12 17:52:38 +01:00
The installation of the actual dependencies is covered in the Instructions
sections below.
2014-01-19 13:43:15 +01:00
Instructions: Homebrew
2012-12-12 17:52:38 +01:00
----------------------
#### Install dependencies using Homebrew
2014-08-21 00:26:29 +02:00
brew install autoconf automake libtool boost miniupnpc openssl pkg-config protobuf qt
2012-12-12 17:52:38 +01:00
2014-01-19 13:43:15 +01:00
Note: After you have installed the dependencies, you should check that the Homebrew installed version of OpenSSL is the one available for compilation. You can check this by typing
2013-04-22 10:26:42 +02:00
openssl version
2014-01-19 13:43:15 +01:00
into Terminal. You should see OpenSSL 1.0.1f 6 Jan 2014.
2013-04-22 10:26:42 +02:00
2014-01-19 13:43:15 +01:00
If not, you can ensure that the Homebrew OpenSSL is correctly linked by running
2013-04-22 10:26:42 +02:00
brew link openssl --force
2014-04-06 04:41:17 +02:00
Rerunning "openssl version" should now return the correct version. If it
doesn't, make sure `/usr/local/bin` comes before `/usr/bin` in your
2014-11-27 17:26:22 +01:00
PATH.
2013-04-22 10:26:42 +02:00
2014-08-21 00:26:29 +02:00
#### Installing berkeley-db4 using Homebrew
The homebrew package for berkeley-db4 has been broken for some time. It will install without Java though.
Running this command takes you into brew's interactive mode, which allows you to configure, make, and install by hand:
```
2014-11-27 17:26:22 +01:00
$ brew install https://raw.github.com/mxcl/homebrew/master/Library/Formula/berkeley-db4.rb -– without-java
2014-08-21 00:26:29 +02:00
```
These rest of these commands are run inside brew interactive mode:
```
/private/tmp/berkeley-db4-UGpd0O/db-4.8.30 $ cd ..
/private/tmp/berkeley-db4-UGpd0O $ db-4.8.30/dist/configure --prefix=/usr/local/Cellar/berkeley-db4/4.8.30 --mandir=/usr/local/Cellar/berkeley-db4/4.8.30/share/man --enable-cxx
/private/tmp/berkeley-db4-UGpd0O $ make
/private/tmp/berkeley-db4-UGpd0O $ make install
/private/tmp/berkeley-db4-UGpd0O $ exit
```
2014-11-27 17:26:22 +01:00
After exiting, you'll get a warning that the install is keg-only, which means it wasn't symlinked to `/usr/local` . You don't need it to link it to build darkcoin, but if you want to, here's how:
2014-08-21 00:26:29 +02:00
$ brew --force link berkeley-db4
2014-11-27 17:26:22 +01:00
### Building `darkcoind`
2012-12-12 17:52:38 +01:00
1. Clone the github tree to get the source code and go into the directory.
2014-11-27 17:26:22 +01:00
git clone https://github.com/darkcoin/darkcoin.git
cd darkcoin
2012-12-12 17:52:38 +01:00
2014-11-27 17:26:22 +01:00
2. Build darkcoind:
2012-12-12 17:52:38 +01:00
2013-11-11 04:11:33 +01:00
./autogen.sh
./configure
make
2012-12-12 17:52:38 +01:00
2013-11-11 04:11:33 +01:00
3. It is a good idea to build and run the unit tests, too:
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
Creating a release build
------------------------
2014-11-27 17:26:22 +01:00
You can ignore this section if you are building `darkcoind` for your own use.
2012-12-12 17:52:38 +01:00
2014-11-27 17:26:22 +01:00
darkcoind/darkcoin-cli binaries are not included in the Bitcoin-Qt.app bundle.
2012-12-12 17:52:38 +01:00
2014-11-27 17:26:22 +01:00
If you are building `darkcoind` or `Bitcoin-Qt` for others, your build machine should be set up
2012-12-12 17:52:38 +01:00
as follows for maximum compatibility:
All dependencies should be compiled with these flags:
2014-02-26 03:35:48 +01:00
-mmacosx-version-min=10.6
-arch x86_64
-isysroot $(xcode-select --print-path)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.6.sdk
2012-12-12 17:52:38 +01:00
2014-02-26 03:35:48 +01:00
Once dependencies are compiled, see release-process.md for how the Bitcoin-Qt.app
bundle is packaged and signed to create the .dmg disk image that is distributed.
2012-12-12 17:52:38 +01:00
Running
-------
2014-11-27 17:26:22 +01:00
It's now available at `./darkcoind` , provided that you are still in the `src`
2012-12-12 17:52:38 +01:00
directory. We have to first create the RPC configuration file, though.
2014-11-27 17:26:22 +01:00
Run `./darkcoind` to get the filename where it should be put, or just try these
2012-12-12 17:52:38 +01:00
commands:
2014-11-27 17:26:22 +01:00
echo -e "rpcuser=darkcoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Darkcoin/darkcoin.conf"
chmod 600 "/Users/${USER}/Library/Application Support/Darkcoin/darkcoin.conf"
2012-12-12 17:52:38 +01:00
When next you run it, it will start downloading the blockchain, but it won't
2014-02-26 03:35:48 +01:00
output anything while it's doing this. This process may take several hours;
you can monitor its process by looking at the debug.log file, like this:
2014-11-27 17:26:22 +01:00
tail -f $HOME/Library/Application\ Support/Darkcoin/debug.log
2012-12-12 17:52:38 +01:00
Other commands:
2014-11-27 17:26:22 +01:00
./darkcoind -daemon # to start the darkcoin daemon.
./darkcoin-cli --help # for a list of command-line options.
./darkcoin-cli help # When the daemon is running, to get a list of RPC commands