mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-09 22:38:01 +00:00
add Icarus support to autoreconf system
This commit is contained in:
parent
f46c2b28a0
commit
2bb92ebcdc
@ -70,3 +70,6 @@ if HAS_BITFORCE
|
|||||||
cgminer_SOURCES += bitforce.c
|
cgminer_SOURCES += bitforce.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if HAS_ICARUS
|
||||||
|
cgminer_SOURCES += icarus.c
|
||||||
|
endif
|
||||||
|
21
configure.ac
21
configure.ac
@ -196,6 +196,17 @@ if test "x$bitforce" = xyes; then
|
|||||||
fi
|
fi
|
||||||
AM_CONDITIONAL([HAS_BITFORCE], [test x$bitforce = xyes])
|
AM_CONDITIONAL([HAS_BITFORCE], [test x$bitforce = xyes])
|
||||||
|
|
||||||
|
icarus="no"
|
||||||
|
|
||||||
|
AC_ARG_ENABLE([icarus],
|
||||||
|
[AC_HELP_STRING([--enable-icarus],[Compile support for Icarus (default disabled)])],
|
||||||
|
[icarus=$enableval]
|
||||||
|
)
|
||||||
|
if test "x$icarus" = xyes; then
|
||||||
|
AC_DEFINE([USE_ICARUS], [1], [Defined to 1 if Icarus support is wanted])
|
||||||
|
fi
|
||||||
|
AM_CONDITIONAL([HAS_ICARUS], [test x$icarus = xyes])
|
||||||
|
|
||||||
AC_SEARCH_LIBS(addstr, ncurses pdcurses, ,
|
AC_SEARCH_LIBS(addstr, ncurses pdcurses, ,
|
||||||
AC_MSG_ERROR([Could not find curses library - please install libncurses-dev or pdcurses-dev]))
|
AC_MSG_ERROR([Could not find curses library - please install libncurses-dev or pdcurses-dev]))
|
||||||
|
|
||||||
@ -338,13 +349,13 @@ if test "x$opencl" != xno; 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"
|
||||||
if test "x$cpumining$bitforce" = xnono; then
|
if test "x$cpumining$bitforce$icarus" = xnonono; then
|
||||||
AC_MSG_ERROR([No mining configured in])
|
AC_MSG_ERROR([No mining configured in])
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo " OpenCL...............: Detection overrided. GPU mining support DISABLED"
|
echo " OpenCL...............: Detection overrided. GPU mining support DISABLED"
|
||||||
if test "x$cpumining$bitforce" = xnono; then
|
if test "x$cpumining$bitforce$icarus" = xnonono; then
|
||||||
AC_MSG_ERROR([No mining configured in])
|
AC_MSG_ERROR([No mining configured in])
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
@ -366,6 +377,12 @@ else
|
|||||||
echo " BitForce.FPGAs.......: Disabled"
|
echo " BitForce.FPGAs.......: Disabled"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if test "x$icarus" = xyes; then
|
||||||
|
echo " Icarus.FPGAs.........: Enabled"
|
||||||
|
else
|
||||||
|
echo " Icarus.FPGAs.........: Disabled"
|
||||||
|
fi
|
||||||
|
|
||||||
echo
|
echo
|
||||||
if test "x$cpumining" = xyes; then
|
if test "x$cpumining" = xyes; then
|
||||||
echo " CPU Mining...........: Enabled"
|
echo " CPU Mining...........: Enabled"
|
||||||
|
Loading…
Reference in New Issue
Block a user