burstcoin-jminer
burstcoin-jminer copied to clipboard
Stuck Without OpenCL
I read the last commitment message on project https://github.com/de-luxe/burstcoin-jminer which says CPU only is possible. However, if I disable the property by:
useOpenCl=false
It will stall at the logging:
2019-10-23 16:54:33.475 INFO 6936 --- [ main] burstcoin.jminer.JMinerCommandLine : mining engine: BURST-LUXE-RED2-G6JW-H4HG5 2019-10-23 16:54:33.475 INFO 6936 --- [ main] burstcoin.jminer.JMinerCommandLine : openCL checker: BURST-QHCJ-9HB5-PTGC-5Q8J9
If I switch useOpenCl=true, it will run. Since I want the program to run on the devices without OpenCl, I'll need the tip/suggestion how to make it work.
I found if I set useOpenCl=false and with no plot files, the program will run. But it may not make much sense to run without plot files, right?
Found the issue... it is due to libshabal library:
./libshabal.so: /lib64/libc.so.6: version GLIBC_2.15' not found (required by ./libshabal.so) ./libshabal.so: /lib64/libc.so.6: version
GLIBC_2.14' not found (required by ./libshabal.so)
./libshabal.so: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by ./libshabal.so)
Would it be kind for you to build one with GLIBC_2.12? thanks.