Created
May 30, 2011 13:10
-
-
Save andrewschaaf/998886 to your computer and use it in GitHub Desktop.
compiling bitcoind on ubuntu-server 10.4
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
sudo apt-get update | |
sudo apt-get install -y git-core build-essential libssl-dev libboost-all-dev libdb4.7-dev libdb4.7++-dev libgtk2.0-dev | |
git clone https://github.com/bitcoin/bitcoin.git | |
cd bitcoin/src | |
make -f makefile.unix clean; make -f makefile.unix USE_UPNP= bitcoind | |
# from #bitcoin-dev: | |
# sacarlson: USE_UPNP= : don't build upnp, USE_UPNP=0 : build but disable by default, USE_UPNP=1 : build but enable by default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Big thanks, saved me some time there!!