Bitcoin-Core

如何修復挖礦軟體出錯?bfgminer 比特幣

  • February 6, 2021

所以我在一台執行良好的 linux 機器上安裝了 bfgminer,以 67Mh/s 單獨挖礦(geforce gtx460)

我試圖在 Windows 10 機器上建構

我試過 msys2 mgwin32 和 64 位

似乎沒有任何效果我在所有階段都遇到錯誤:自動生成、配置和製作

我現在使用 mgwin64bit 並成功進入製作階段…

我能夠自動生成,配置,但是當涉及到 make 我得到一個錯誤:

make[3]: Leaving directory '/home/virtu/bfgminer/libblkmaker'
 CCLD     bfgminer.exe
C:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/10.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: bfgminer-miner.o:miner.c:(.rdata$.refptr.cpus[.refptr.cpus]+0x0): undefined reference to `cpus'
collect2.exe: error: ld returned 1 exit status
make[2]: *** [Makefile:1340: bfgminer.exe] Error 1
make[2]: Leaving directory '/home/virtu/bfgminer'
make[1]: *** [Makefile:2844: all-recursive] Error 1
make[1]: Leaving directory '/home/virtu/bfgminer'
make: *** [Makefile:1209: all] Error 2

有人可以幫我想出一個解決方案嗎?

與此同時,我將返回 mingw32 並嘗試修復 autogen/configure 上沒有 gcc 或 c 兼容的編譯器問題

礦工文件錯誤,與cpus有關

./configure with enable cpu mining修復了這個

現在可以製作 bfgminer

注意其他使用者的類似問題:

<https://github.com/luke-jr/bfgminer/issues/787>

./configure –enable-cpuming && make

引用自:https://bitcoin.stackexchange.com/questions/101145