OS X tutorial for building steem.
I had a hard time finding a complete guide for OS X so I decided to write one.
Open your terminal and update Brew using
brew doctorcommand.Install steem dependecies using this command.
brew install boost cmake git openssl autoconf automake qt5Create a symling for openssl using this command
brew link --force opensslInstall berkeley-db and google-preftools
brew install google-perftools
brew install berkeley-db
- Install libtool and python3 (thanks @anyx)
brew install libtool
brew install python3
- Clone the repository
git clone https://github.com/steemit/steem.git - Change directory to steem
cd steem - Build steem
git submodule update --init --recursive
cmake .
make
If you receive this message [100%] Built target chain_test it means that you are good to go !
Enjoy !