1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-22 12:34:27 +00:00

Give convenient summary at end of ./configure.

This commit is contained in:
Con Kolivas 2011-08-29 10:43:33 +10:00
parent fa91f6a664
commit 807ddd1c2e

View File

@ -240,14 +240,35 @@ AC_CONFIG_FILES([
AC_OUTPUT AC_OUTPUT
echo '' echo
echo
echo
echo "------------------------------------------------------------------------"
echo "$PACKAGE $VERSION"
echo "------------------------------------------------------------------------"
echo
echo
echo "Configuration Options Summary:"
echo
if test "x$opencl" != xno; then if test "x$opencl" != xno; then
if test $found_opencl = 1; then if test $found_opencl = 1; then
echo OpenCL: FOUND. GPU mining support enabled. echo " OpenCL...............: FOUND. GPU mining support enabled"
else else
echo OpenCL: NOT FOUND. GPU mining support DISABLED. echo " OpenCL...............: NOT FOUND. GPU mining support DISABLED"
fi fi
else else
echo OpenCL: Detection overrided. GPU mining support DISABLED. echo " OpenCL...............: Detection overrided. GPU mining support DISABLED"
fi fi
echo " ASM..................: $has_yasm"
echo
echo "Compilation............: make (or gmake)"
echo " CPPFLAGS.............: $CPPFLAGS"
echo " CFLAGS...............: $CFLAGS"
echo " CXXFLAGS.............: $CXXFLAGS"
echo " LDFLAGS..............: $LDFLAGS"
echo
echo "Installation...........: make install (as root if needed, with 'su' or 'sudo')"
echo " prefix...............: $prefix"
echo