Skip to content

Instantly share code, notes, and snippets.

@patricklodder
Created January 10, 2016 12:48
Show Gist options
  • Save patricklodder/adb6b4e2270bc35635ed to your computer and use it in GitHub Desktop.
Save patricklodder/adb6b4e2270bc35635ed to your computer and use it in GitHub Desktop.
make dogecoind linux64 natively
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