Skip to content

Instantly share code, notes, and snippets.

@stefan-huettemann
Created May 22, 2021 17:53
Show Gist options
  • Save stefan-huettemann/88e73d94893c8335da2194328aa0df54 to your computer and use it in GitHub Desktop.
Save stefan-huettemann/88e73d94893c8335da2194328aa0df54 to your computer and use it in GitHub Desktop.
dogecoin configuration on OSX
# see Building-Dogecoin-1.14-for-Mac.md
echo "== Setting Berkeley and OpenSSL ENV Flags & Paths"
echo export LDFLAGS=-L/usr/local/BerkeleyDB.5.1/lib
export LDFLAGS=-L/usr/local/BerkeleyDB.5.1/lib
echo export CPPFLAGS=-I/usr/local/BerkeleyDB.5.1/include
export CPPFLAGS=-I/usr/local/BerkeleyDB.5.1/include
echo export INCPATHS=-I/usr/local/opt/openssl/include
export INCPATHS=-I/usr/local/opt/openssl/include
echo export LIBPATHS=-L/usr/local/opt/openssl/lib
export LIBPATHS=-L/usr/local/opt/openssl/lib
echo "== Runnning ./autogen.sh"
./autogen.sh
_CONF='./configure --enable-debug --with-gui=qt5 --with-qrcode=yes'
printf "== Runnning: %s\n" "${_CONF}"
${_CONF} && printf "#\n# See: ./config.log\n#\n"
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment