Created
March 31, 2020 18:14
-
-
Save suprnurd/940d6513cb70eb943e227c563c5cee35 to your computer and use it in GitHub Desktop.
Compiling Crypto - Dogecoin v1.14.2 on 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
apt-get update && apt-get upgrade -y; | |
git clone https://github.com/dogecoin/dogecoin.git; | |
cd dogecoin; | |
git checkout v1.14.2; | |
cd dogecoin/depends; | |
apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils; | |
cd sources; | |
wget https://www.openssl.org/source/old/1.0.1/openssl-1.0.1l.tar.gz; | |
wget http://download.qt.io/new_archive/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.gz; | |
wget http://download.qt.io/new_archive/qt/5.7/5.7.1/submodules/qttranslations-opensource-src-5.7.1.tar.gz; | |
cd ..; | |
make download-linux; | |
make; | |
cd ..; | |
./autogen.sh; | |
./configure --enable-cxx --disable-shared --with-pic --disable-tests --prefix=`pwd`/depends/x86_64-pc-linux-gnu; | |
make; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here's the video that goes with this: https://youtu.be/yonrpMqjr94