1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Add configuration option for CPU mining which will default to off.

This commit is contained in:
ckolivas 2012-01-19 15:55:45 +11:00
parent d02660881b
commit 91af258e77

View File

@ -112,6 +112,14 @@ if test "x$ATISTREAMSDKROOT" != x; then
OPENCL_LIBS="-L$ATISTREAMSDKROOT/lib/$ATI_STREAM_ARCH_DIR $OPENCL_LIBS" OPENCL_LIBS="-L$ATISTREAMSDKROOT/lib/$ATI_STREAM_ARCH_DIR $OPENCL_LIBS"
fi fi
AC_ARG_ENABLE([cpumining],
[AC_HELP_STRING([--enable-cpumining],[Build with cpu mining support(default disabled)])],
[cpumining=$enableval]
)
if test "x$cpumining" = xyes; then
AC_DEFINE_UNQUOTED([WANT_CPUMINE], [1], [Enable CPUMINING])
fi
AC_ARG_ENABLE([opencl], AC_ARG_ENABLE([opencl],
[AC_HELP_STRING([--disable-opencl],[Override detection and disable building with opencl])], [AC_HELP_STRING([--disable-opencl],[Override detection and disable building with opencl])],
[opencl=$enableval] [opencl=$enableval]
@ -323,7 +331,14 @@ else
echo " ADL..................: Detection overrided. GPU monitoring support DISABLED" echo " ADL..................: Detection overrided. GPU monitoring support DISABLED"
fi fi
echo " ASM.(for CPU mining).: $has_yasm" echo
if test "x$cpumining" = xyes; then
echo " CPU MINING...........: Enabled"
echo " ASM.(for CPU mining).: $has_yasm"
else
echo " CPU MINING...........: Disabled"
fi
echo echo
echo "Compilation............: make (or gmake)" echo "Compilation............: make (or gmake)"
echo " CPPFLAGS.............: $CPPFLAGS" echo " CPPFLAGS.............: $CPPFLAGS"