我正在尝试安装 cgminer。使用说明:
# git clone https://github.com/ckolivas/cgminer
# cd cgminer && git checkout v3.1.1
# cd ADL_SDK && wget http://www.lurkmore.com/mining/ADL_SDK.zip && unzip -j ADL_SDK.zip 'include/adl_*.h'
# cd .. && ./autogen.sh && ./configure --enable-opencl --enable-scrypt && make && make install
# cd && rm -rf cgminer && mkdir .cgminer
但是,autogen.sh 显示以下错误:
checking for LIBCURL... no
checking for LIBCURL... no
configure: error: Missing required libcurl dev >= 7.18.2
所以,我从Curl 网站下载了最后一个源代码
并检查版本:
$ curl-config --version
libcurl 7.51.0
但是再次运行 ./autogen.sh 我得到了同样的错误:
checking for LIBCURL... no
checking for LIBCURL... no
configure: error: Missing required libcurl dev >= 7.18.2
我究竟做错了什么?