Last active
September 13, 2017 15:23
-
-
Save MrChrisJ/324168841aa243608547ad20590407cb to your computer and use it in GitHub Desktop.
Install UASF on Raspberry Pi 3 (simple)
This file contains hidden or 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
bitcoin-cli stop | |
sudo rm -r -f ~/bin | |
mkdir ~/bin/ | |
sudo rm -r -f /home/pi/bin/bitcoin | |
cd ~/bin/ | |
git clone https://github.com/bitcoin/bitcoin -b v0.15.0 | |
cd ~/bin/bitcoin | |
./autogen.sh | |
./configure CPPFLAGS="-I/usr/local/BerkeleyDB.4.8/include -O2" LDFLAGS="-L/usr/local/BerkeleyDB.4.8/lib" --enable-upnp-default --with-gui=qt4 | |
make -j2 | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment