Skip to content

Commit a8b2a82

Browse files
committed
Merge bitcoin#9156: Add compile and link options echo to configure
d8274bc Add compile and link options echo to configure (Jonas Schnelli)
2 parents aaca05c + d8274bc commit a8b2a82

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

configure.ac

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1134,3 +1134,28 @@ case ${OS} in
11341134
mv qa/pull-tester/tests_config-2.py qa/pull-tester/tests_config.py
11351135
;;
11361136
esac
1137+
1138+
echo
1139+
echo "Options used to compile and link:"
1140+
echo " with wallet = $enable_wallet"
1141+
echo " with gui / qt = $bitcoin_enable_qt"
1142+
if test x$bitcoin_enable_qt != xno; then
1143+
echo " qt version = $bitcoin_qt_got_major_vers"
1144+
echo " with qr = $use_qr"
1145+
fi
1146+
echo " with zmq = $use_zmq"
1147+
echo " with test = $use_tests"
1148+
echo " with bench = $use_bench"
1149+
echo " with upnp = $use_upnp"
1150+
echo " debug enabled = $enable_debug"
1151+
echo
1152+
echo " target os = $TARGET_OS"
1153+
echo " build os = $BUILD_OS"
1154+
echo
1155+
echo " CC = $CC"
1156+
echo " CFLAGS = $CFLAGS"
1157+
echo " CPPFLAGS = $CPPFLAGS"
1158+
echo " CXX = $CXX"
1159+
echo " CXXFLAGS = $CXXFLAGS"
1160+
echo " LDFLAGS = $LDFLAGS"
1161+
echo

0 commit comments

Comments
 (0)