aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Loewenherz <dloewenherz@gmail.com>2011-04-13 13:38:22 -0700
committerDan Loewenherz <dloewenherz@gmail.com>2011-04-13 13:38:24 -0700
commitd7f0287235da6a5c280d5568bf9dbd079a46c28b (patch)
treead04cfa7b42eac8c1767f076f27d8c9d5576bff1
parentb37f09aa2e80b17028ad7fe1e87362c0f07c7406 (diff)
downloadbitcoin-d7f0287235da6a5c280d5568bf9dbd079a46c28b.tar.xz
build: add note for Snow Leopard users and fix typos in linking instructions
-rw-r--r--build-osx.txt9
1 files changed, 6 insertions, 3 deletions
diff --git a/build-osx.txt b/build-osx.txt
index a67a3be2e8..79279838d3 100644
--- a/build-osx.txt
+++ b/build-osx.txt
@@ -59,7 +59,10 @@ cd ~/bitcoin/deps
tar xvjf ~/Downloads/boost_1_42_0.tar.bz2
cd boost_1_42_0
./bootstrap.sh
-./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
+./bjam architecture=combined address-model=32_64 macosx-version=10.5 macosx-version-min=10.5 link=static runtime-link=static --toolset=darwin --prefix=/Users/macosuser/bitcoin/deps install
+
+If you're using Snow Leopard, you will need to specify 10.6 as your Mac OS X
+version instead of 10.5.
This part takes a while.. use your judgement and fix it if something doesn't
build for some reason.
@@ -90,12 +93,12 @@ tar xvf ~/Downloads/openssl-1.0.0.tar
mv openssl-1.0.0 openssl-1.0.0-x86_64
# build i386 (32 bit intel) binary
cd openssl-1.0.0-i386
-./Configure --prefix=/Users/macosuser/bitcoin/deps --openssldir=/Users/macosuser/deps/openssl darwin-i386-cc && make
+./Configure --prefix=/Users/macosuser/bitcoin/deps --openssldir=/Users/macosuser/bitcoin/deps/openssl darwin-i386-cc && make
make install # only do this on one of the architectures, to install the headers
cd ..
# build x86_64 (64 bit intel) binary
cd openssl-1.0.0-x86_64
-./Configure --prefix=/Users/macosuser/bitcoin/deps --openssldir=/Users/macosuser/deps/openssl darwin64-x86_64-cc && make
+./Configure --prefix=/Users/macosuser/bitcoin/deps --openssldir=/Users/macosuser/bitcoin/deps/openssl darwin64-x86_64-cc && make
cd ..
# combine the libs