为什么我在尝试编译 cgminer 时收到此错误消息?autoreconf 错误

为什么我在尝试编译 cgminer 时收到此错误消息?autoreconf 错误

我正在尝试安装挖矿机在我的 RaspBerry 上(它使用 RaspBian,这是一个 Debian 简约版本),如下所述:https://bitcointalk.org/index.php?topic=494625.0

具体安装步骤如下:

git clone https://github.com/gridseed/usb-miner/
cd usb-miner/software/cgminer
autoreconf -i
./configure --enable-gridseed
make

当我尝试执行第三步时遇到了一些问题,事实上当我尝试执行自动重新配置命令我收到以下错误消息:

pi@raspberrypi ~/download/usb-miner/software/cgminer $ autoreconf -i
autom4te: cannot create autom4te.cache: No such file or directory
aclocal: /usr/bin/autom4te failed with exit status: 1
autoreconf: aclocal failed with exit status: 1

为什么?我该怎么做才能解决这个问题?

autoreconf 命令到底起什么作用?autom4te.cache

谢谢

答案1

该存储库是由执行编译的用户以外的其他用户创建/克隆的。因此,执行编译的用户对编译要写入的文件夹没有写入权限autom4te.cache

sudo chown -R pi:pi /home/pi/download/usb-miner/software/cgminer

将解决问题 - 通过用户pi获取 repo 目录的所有权,从而允许用户编译pi并写入这些文件夹。

相关内容