Skip to content

Instantly share code, notes, and snippets.

@rllola
Created June 3, 2018 11:11
Show Gist options
  • Save rllola/0e46feae5a41cb7d29352a84fb388304 to your computer and use it in GitHub Desktop.
Save rllola/0e46feae5a41cb7d29352a84fb388304 to your computer and use it in GitHub Desktop.
Dogecoin 1.14-branding install ubuntu 18.04
# Clone the repo
git clone git@github.com:dogecoin/dogecoin.git
# Pick the correct branch/version
cd dogecoin
git checkout 1.14-branding
# Install dependencies
sudo apt install build-essential libtool autotools-dev autoconf pkg-config libssl-dev
# Autogen
./autogen.sh
# Configure
./configure
# If this error https://github.com/dogecoin/dogecoin/issues/1497
sudo apt-get install libboost-all-dev libdb5.3-dev libdb5.3++-dev libevent-dev
# Then try again with the "--with-incompatible-bdb" because by default dogecoin want 5.1 but it is not available in 18.04
./configure --with-incompatible-bdb
# Make
make
# Build
build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment