Created
June 3, 2018 11:11
-
-
Save rllola/0e46feae5a41cb7d29352a84fb388304 to your computer and use it in GitHub Desktop.
Dogecoin 1.14-branding install ubuntu 18.04
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
# Clone the repo | |
git clone [email protected]: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