Skip to content

Instantly share code, notes, and snippets.

@langerhans
Forked from patricklodder/makeit.sh
Created January 10, 2016 17:36
Show Gist options
  • Save langerhans/0d75aab2b3c777166499 to your computer and use it in GitHub Desktop.
Save langerhans/0d75aab2b3c777166499 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