Fix make_change to not create half-satoshis
[bitcoinplatinum.git] / doc / build-osx.md
blobade9eb466b1f87bd1dda46cb263abddea7a68b4f
1 Mac OS X Build Instructions and Notes
2 ====================================
3 This guide will show you how to build bitcoind(headless client) for OSX.
5 Notes
6 -----
8 * Tested on OS X 10.6 through 10.9 on 64-bit Intel processors only.
9 Older OSX releases or 32-bit processors are no longer supported.
11 * All of the commands should be executed in a Terminal application. The
12 built-in one is located in `/Applications/Utilities`.
14 Preparation
15 -----------
17 You need to install XCode with all the options checked so that the compiler
18 and everything is available in /usr not just /Developer. XCode should be
19 available on your OS X installation media, but if not, you can get the
20 current version from https://developer.apple.com/xcode/. If you install
21 Xcode 4.3 or later, you'll need to install its command line tools. This can
22 be done in `Xcode > Preferences > Downloads > Components` and generally must
23 be re-done or updated every time Xcode is updated.
25 There's also an assumption that you already have `git` installed. If
26 not, it's the path of least resistance to install [Github for Mac](https://mac.github.com/)
27 (OS X 10.7+) or
28 [Git for OS X](https://code.google.com/p/git-osx-installer/). It is also
29 available via Homebrew or MacPorts.
31 You will also need to install [Homebrew](http://brew.sh)
32 or [MacPorts](https://www.macports.org/) in order to install library
33 dependencies. It's largely a religious decision which to choose, however, Homebrew
34 is now used for building release versions.
36 The installation of the actual dependencies is covered in the Instructions
37 sections below.
39 Instructions: MacPorts
40 ----------------------
42 ### Install dependencies
44     sudo port install boost db48@+no_java openssl miniupnpc autoconf pkgconfig automake libtool
46 Optional: install Qt4
48     sudo port install qt4-mac qrencode protobuf-cpp
50 ### Building `bitcoind`
52 1. Clone the github tree to get the source code and go into the directory.
54         git clone git@github.com:bitcoin/bitcoin.git bitcoin
55         cd bitcoin
57 2.  Build bitcoind (and Bitcoin-Qt, if configured):
59         ./autogen.sh
60         ./configure
61         make
63 3.  It is a good idea to build and run the unit tests, too:
65         make check
67 Instructions: Homebrew
68 ----------------------
70 #### Install dependencies using Homebrew
72         brew install autoconf automake libtool boost miniupnpc openssl pkg-config protobuf qt
74 #### Installing berkeley-db4 using Homebrew
76 The homebrew package for berkeley-db4 has been broken for some time.  It will install without Java though.
78 Running this command takes you into brew's interactive mode, which allows you to configure, make, and install by hand:
79 ```
80 $ brew install https://raw.github.com/mxcl/homebrew/master/Library/Formula/berkeley-db4.rb -–without-java 
81 ```
83 These rest of these commands are run inside brew interactive mode:
84 ```
85 /private/tmp/berkeley-db4-UGpd0O/db-4.8.30 $ cd ..
86 /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
87 /private/tmp/berkeley-db4-UGpd0O $ make
88 /private/tmp/berkeley-db4-UGpd0O $ make install
89 /private/tmp/berkeley-db4-UGpd0O $ exit
90 ```
92 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 bitcoin, but if you want to, here's how:
94     $ brew --force link berkeley-db4
97 ### Building `bitcoind`
99 1. Clone the github tree to get the source code and go into the directory.
101         git clone https://github.com/bitcoin/bitcoin.git
102         cd bitcoin
104 2.  Build bitcoind:
106         ./autogen.sh
107         ./configure
108         make
110 3.  It is also a good idea to build and run the unit tests:
112         make check
114 Creating a release build
115 ------------------------
116 You can ignore this section if you are building `bitcoind` for your own use.
118 bitcoind/bitcoin-cli binaries are not included in the Bitcoin-Qt.app bundle.
120 If you are building `bitcoind` or `Bitcoin-Qt` for others, your build machine should be set up
121 as follows for maximum compatibility:
123 All dependencies should be compiled with these flags:
125  -mmacosx-version-min=10.6
126  -arch x86_64
127  -isysroot $(xcode-select --print-path)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.6.sdk
129 For MacPorts, that means editing your macports.conf and setting
130 `macosx_deployment_target` and `build_arch`:
132     macosx_deployment_target=10.6
133     build_arch=x86_64
135 ... and then uninstalling and re-installing, or simply rebuilding, all ports.
137 As of December 2012, the `boost` port does not obey `macosx_deployment_target`.
138 Download `https://gavinandresen-bitcoin.s3.amazonaws.com/boost_macports_fix.zip`
139 for a fix.
141 Once dependencies are compiled, see release-process.md for how the Bitcoin-Qt.app
142 bundle is packaged and signed to create the .dmg disk image that is distributed.
144 Running
145 -------
147 It's now available at `./bitcoind`, provided that you are still in the `src`
148 directory. We have to first create the RPC configuration file, though.
150 Run `./bitcoind` to get the filename where it should be put, or just try these
151 commands:
153     echo -e "rpcuser=bitcoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf"
154     chmod 600 "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf"
156 The next time you run it, it will start downloading the blockchain, but it won't
157 output anything while it's doing this. This process may take several hours;
158 you can monitor its process by looking at the debug.log file, like this:
160     tail -f $HOME/Library/Application\ Support/Bitcoin/debug.log
162 Other commands:
163 -------
165     ./bitcoind -daemon # to start the bitcoin daemon.
166     ./bitcoin-cli --help  # for a list of command-line options.
167     ./bitcoin-cli help    # When the daemon is running, to get a list of RPC commands