Add compile and link options echo to configure

This commit is contained in:
Jonas Schnelli 2016-11-14 10:55:56 +01:00 committed by Jack Grigg
parent 8a932154c5
commit 0bcd85bee8
No known key found for this signature in database
GPG Key ID: 665DBCD284F7DAFF
1 changed files with 18 additions and 0 deletions

View File

@ -876,3 +876,21 @@ case $host in
chmod 755 libtool
;;
esac
echo
echo "Options used to compile and link:"
echo " with wallet = $enable_wallet"
echo " with zmq = $use_zmq"
echo " with test = $use_tests"
echo " debug enabled = $enable_debug"
echo
echo " target os = $TARGET_OS"
echo " build os = $BUILD_OS"
echo
echo " CC = $CC"
echo " CFLAGS = $CFLAGS"
echo " CPPFLAGS = $CPPFLAGS"
echo " CXX = $CXX"
echo " CXXFLAGS = $CXXFLAGS"
echo " LDFLAGS = $LDFLAGS"
echo