Created
January 10, 2016 12:48
-
-
Save patricklodder/adb6b4e2270bc35635ed to your computer and use it in GitHub Desktop.
make dogecoind linux64 natively
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
CORES=8 | |
pushd depends/ | |
make -j${CORES} NO_QT=1 NO_UPNP=1 | |
popd | |
./autogen.sh | |
./configure --prefix=`pwd`/depends/x86_64-unknown-linux-gnu --without-gui --without-miniupnpc --enable-hardening --enable-cxx --disable-shared --with-pic CPPFLAGS="-O2" LDFLAGS=-static-libstdc++ | |
pushd src/ | |
make -j${CORES} dogecoind dogecoin-cli | |
strip dogecoind dogecoin-cli | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment