Skip to content

Instantly share code, notes, and snippets.

@ralphtheninja
Forked from BlinkyStitt/making bitcoind
Created April 17, 2013 11:37
Show Gist options
  • Save ralphtheninja/5403587 to your computer and use it in GitHub Desktop.
Save ralphtheninja/5403587 to your computer and use it in GitHub Desktop.
sudo apt-get update
sudo apt-get install -y git-core build-essential libssl-dev libboost-all-dev libdb5.1-dev libdb5.1++-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
# optionally,
strip bitcoind
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment