Skip to content

Instantly share code, notes, and snippets.

@suprnurd
Created March 31, 2020 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suprnurd/940d6513cb70eb943e227c563c5cee35 to your computer and use it in GitHub Desktop.
Save suprnurd/940d6513cb70eb943e227c563c5cee35 to your computer and use it in GitHub Desktop.
Compiling Crypto - Dogecoin v1.14.2 on Ubuntu 18.04
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;
@suprnurd
Copy link
Author

suprnurd commented Mar 31, 2020

Here's the video that goes with this: https://youtu.be/yonrpMqjr94

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment