TrueCarry / JettonGramGpuMiner

GNU General Public License v3.0
148 stars 81 forks source link

Ubuntu 18.04 pow-miner-cuda not work #3

Closed AlexSpain closed 7 months ago

AlexSpain commented 7 months ago

./pow-miner-cuda

./pow-miner-cuda: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by ./pow-miner-cuda)

./pow-miner-cuda: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found (required by ./pow-miner-cuda)

lrdcxdes commented 7 months ago

Check GLIBC_2.29

ldd --version | head -n1

Build GLIBC_2.29 from sources

sudo apt-get install gawk bison -y wget -c https://ftp.gnu.org/gnu/glibc/glibc-2.34.tar.gz tar -zxvf glibc-2.34.tar.gz && cd glibc-2.34 mkdir glibc-build && cd glibc-build ../configure --prefix=/opt/glibc-2.34 make sudo make install