無法在 jetson 上運行 cudaminer

無法在 jetson 上運行 cudaminer

下載並執行 ./autogen.sh 和 ./configure 後,執行 make 指令會在我的 Jetson TK1 上出現以下錯誤

gcc -std=gnu99 -DHAVE_CONFIG_H -I。 -msse2 -fopenmp -pthread -fno-strict-aliasing -I./compat/jansson -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -g -O2 -MT cudaminer-cpu-miner.o. -miner.Tpo -c -o cudaminer-cpu-miner.o test -f 'cpu-miner.c' || echo './'cpu-miner.cgcc:錯誤:無法辨識的命令列選項'-msse2'make [2]:* [cudaminer-cpu-miner.o] 錯誤 1make[2]: 離開目錄/home/ubuntu/CudaMiner-master'make[1]: *** [all-recursive] Error 1make[1]: Leaving directory/home/ubuntu/CudaMiner-master'make: *[全部] 錯誤2

不知道下一步該怎麼做,不勝感激。

答案1

我對 Jetson TK1 有一些(高度)實驗性的部分https://github.com/noxo/CudaMiner。這裡的錯誤(無法辨識的命令列選項'-msse2')是因為程式碼編譯是使用SSE指令完成的,這在ARM架構上不可用(應該使用NEON)。

相關內容