Install ccminer klaust fork Ubuntu 16.04
The fastest algorithm to mine on NVIDIA is by far Skein. This fork of ccminer from Klaust is definitely the fastest build of ccminer I have found to mine Skein on NVIDIA CUDA.
The build attached here is pre-compiled to work with the Install NVIDIA Driver and CUDA on Ubuntu 16.04
#!/bin/bash mkdir klaust cd klaust wget https://github.com/KlausT/ccminer/archive/8.09.zip apt-get install -y unzip unzip 8.09.zip cd ccminer-8.09 apt-get install -y python3-dev echo 'add_compile_options(-std=c++11)' >> ./CMakeLists.txt ./autogen.sh ./configure make echo "Finished" exit
joe
Thanks for sharing this; trying to follow and the intent of this command doesn’t seem to take effect;
“echo ‘add_compile_options(-std=c++11)’ >> ./CMakeLists.txt”
as invariably thus far, “make” has failed with:
“/usr/include/c++/5/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.”
thank you in advance for any suggestion 🙂