1 Copyright (c) 2010 Laszlo Hanyecz
2 Distributed under the MIT/X11 software license, see the accompanying
3 file license.txt or http://www.opensource.org/licenses/mit-license.php.
4 This product includes software developed by the OpenSSL Project for use in
5 the OpenSSL Toolkit (http://www.openssl.org/). This product includes
6 cryptographic software written by Eric Young (eay@cryptsoft.com).
9 Mac OS X build instructions
10 Laszlo Hanyecz (solar@heliacal.net)
13 Tested on 10.5 and 10.6 intel. PPC is not supported because it's big-endian.
15 All of the commands should be executed in Terminal.app.. it's in
16 /Applications/Utilities
18 You need to install XCode with all the options checked so that the compiler
19 and everything is available in /usr not just /Developer
20 I think it comes on the DVD but you can get the current version from
21 http://developer.apple.com
24 1. Pick a directory to work inside.. something like ~/bitcoin works. The
25 structure I use looks like this:
26 (~ is your home directory)
29 ~/bitcoin/trunk # source code
30 ~/bitcoin/deps # dependencies.. like libraries and headers needed to compile
31 ~/bitcoin/Bitcoin.app # the application bundle where you can run the app
33 Just execute: mkdir ~/bitcoin
34 This will create the top dir for you..
36 WARNING: do not use the ~ notation with the configure scripts.. use the full
37 name of the directory, for example /Users/james/bitcoin/deps for a user named
38 'james'. In my examples I am using 'macosuser' so make sure you change that.
40 2. Check out the trunk version of the bitcoin code from subversion:
43 svn checkout https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk
45 This will make ~/bitcoin/trunk for you with all the files from subversion.
47 3. Get and build the dependencies
53 Download from http://www.boost.org/users/download/
54 I'm assuming it ended up in ~/Downloads..
58 tar xvjf ~/Downloads/boost_1_42_0.tar.bz2
61 ./bjam architecture=combined address-model=32_64 macosx-version=10.6 macosx-version-min=10.5 link=static runtime-link=static --toolset=darwin --prefix=/Users/macosuser/bitcoin/deps install
63 This part takes a while.. use your judgement and fix it if something doesn't
64 build for some reason.
66 Change the prefix to whatever your directory is (my username in this example
67 is macosuser). I'm also running on 10.6 so i have macosx-version=10.6 change
68 to 10.5 if you're using leopard.
70 This is what my output looked like at the end:
71 ...failed updating 2 targets...
72 ...skipped 144 targets...
73 ...updated 8074 targets...
79 Download from http://www.openssl.org/source/
81 We would like to build this as a 32 bit/64 bit library so we actually build it
82 2 times and join it together here.. If you downloaded with safari it already
83 uncompressed it so it will just be a tar not a tar.gz
86 tar xvf ~/Downloads/openssl-1.0.0.tar
87 mv openssl-1.0.0 openssl-1.0.0-i386
88 tar xvf ~/Downloads/openssl-1.0.0.tar
89 mv openssl-1.0.0 openssl-1.0.0-x86_64
90 # build i386 (32 bit intel) binary
92 ./Configure --prefix=/Users/macosuser/bitcoin/deps --openssldir=/Users/macosuser/deps/openssl darwin-i386-cc && make
93 make install # only do this on one of the architectures, to install the headers
95 # build x86_64 (64 bit intel) binary
96 cd openssl-1.0.0-x86_64
97 ./Configure --prefix=/Users/macosuser/bitcoin/deps --openssldir=/Users/macosuser/deps/openssl darwin64-x86_64-cc && make
102 lipo -arch i386 openssl-1.0.0-i386/libcrypto.a -arch x86_64 openssl-1.0.0-x86_64/libcrypto.a -o lib/libcrypto.a -create
103 lipo -arch i386 openssl-1.0.0-i386/libssl.a -arch x86_64 openssl-1.0.0-x86_64/libssl.a -o lib/libssl.a -create
109 output should look like this:
111 ib/libcrypto.a: Mach-O universal binary with 2 architectures
112 lib/libcrypto.a (for architecture i386): current ar archive random library
113 lib/libcrypto.a (for architecture x86_64): current ar archive random library
119 Download from http://freshmeat.net/projects/berkeleydb/
122 tar xvf ~/Downloads/db-4.8.26.tar
123 cd db-4.8.26/build_unix
124 ../dist/configure --prefix=/Users/macosuser/bitcoin/deps --enable-cxx && make && make install
130 This is the big one..
132 Check it out from svn
135 svn checkout http://svn.wxwidgets.org/svn/wx/wxWidgets/trunk wxWidgets-trunk
137 This will make a wxWidgets-trunk directory in deps.
139 Use this script snippet, change your prefix to whatever your dir is:
141 PREFIX=~/bitcoin/deps
142 SRCDIR="$PREFIX/wxWidgets-trunk"
143 BUILDDIR="$SRCDIR/macbuild"
146 #svn checkout http://svn.wxwidgets.org/svn/wx/wxWidgets/trunk wxWidgets-trunk &&
149 [ -f include/wx/hashmap.h.orig ] || cp include/wx/hashmap.h include/wx/hashmap.h.orig &&
150 sed 's/if wxUSE_STL/if 0 \&\& wxUSE_STL/g' < include/wx/hashmap.h.orig > include/wx/hashmap.h &&
152 [ -f include/wx/hashset.h.orig ] || cp include/wx/hashset.h include/wx/hashset.h.orig &&
153 sed 's/if wxUSE_STL/if 0 \&\& wxUSE_STL/g' < include/wx/hashset.h.orig > include/wx/hashset.h &&
157 rm -vrf "$BUILDDIR" &&
161 ../configure --prefix="$PREFIX" \
164 --disable-debug_flag \
165 --with-macosx-version-min=10.5 \
168 --enable-universal_binary \
169 --with-libjpeg=builtin \
170 --with-libpng=builtin \
171 --with-regex=builtin \
172 --with-libtiff=builtin \
173 --with-zlib=builtin \
174 --with-expat=builtin \
175 --with-macosx-sdk=/Developer/SDKs/MacOSX10.5.sdk &&
178 find . -name Makefile |
181 sed 's/-arch i386/-arch i386 -arch x86_64/g' < "$i" > "$i".new &&
193 Now you should be able to build bitcoin
196 make -f makefile.osx bitcoin
198 Before you can run it, you need to create an application bundle for Mac OS.
199 Create the directories in terminal using mkdir and copy the files into place.
200 They are available at http://heliacal.net/~solar/bitcoin/mac-build/
201 You need the Info.plist and the .ins file. The Contents/MacOS/bitcoin file is
202 the output of the build.
203 Your directory structure should look like this:
207 Bitcoin.app/Contents/Info.plist
208 Bitcoin.app/Contents/MacOS
209 Bitcoin.app/Contents/MacOS/bitcoin
210 Bitcoin.app/Contents/Resources
211 Bitcoin.app/Contents/Resources/BitcoinAppIcon.icns
213 To run it you can just click the Bitcoin.app in Finder, or just do open
214 ~/bitcoin/Bitcoin.app
215 If you want to run it with arguments you can just run it without backgrounding
216 by specifying the full name in terminal:
217 ~/bitcoin/Bitcoin.app/Contents/MacOS/bitcoin -addnode=192.75.207.66