Created
September 29, 2016 11:15
-
-
Save brianonn/f2c98cad2a33e646a9f9e25c26943f0c to your computer and use it in GitHub Desktop.
how to build bitcoin (0.13) on a new Ubuntu install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# building bitcoin (for 0.13) | |
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils | |
sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev | |
sudo apt-get install libboost-program-options-dev libboost-test-dev libboost-thread-dev | |
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools | |
sudo apt-get install libprotobuf-dev protobuf-compiler libminiupnpc-dev libzmq3-dev libdb++-dev | |
sudo apt-get install git emacs | |
mkdir src | |
cd src | |
git clone https://github.com/bitcoin/bitcoin.git | |
cd bitcoin | |
./autogen.sh | |
./configure --enable-upnp-default --with-incompatible-bdb | |
make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment