-
Notifications
You must be signed in to change notification settings - Fork 648
Building on OS X
theoreticalbts edited this page Dec 7, 2015
·
14 revisions
-
Install XCode and its command line tools by following the instructions here: https://guide.macports.org/#installing.xcode. In OS X 10.11 (El Capitan) and newer, you will be prompted to install developer tools when running a devloper command in the terminal. This step may not be needed.
-
Install Homebrew by following the instructions here: http://brew.sh/
-
Initialize Homebrew:
brew doctor brew update
-
Install dependencies:
brew install boost cmake git openssl autoconf automake brew link --force openssl
-
Optional. To support importing Bitcoin wallet files:
brew install berkeley-db
-
Optional. To use TCMalloc in LevelDB:
brew install google-perftools
-
Clone the Graphene repository:
git clone [email protected]:Cryptonomex/graphene.git cd graphene
-
Build BitShares:
git submodule update --init --recursive cmake . make