Post
Topic
Board Mining (Altcoins)
Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia
by
clintar
on 05/08/2014, 19:22:51 UTC
You can use my repo with simpleminer updated with cryptozoidberg's fixes so it runs better.  https://github.com/clintar/boolberry-opencl until mbk pulls those changes in.

If you can't get it working following mbk's instructions in the README.md, try
Code:
cmake -DOPENCL_LIBRARY=/usr/lib/libOpenCL.so
make
or
Code:
cmake -DOPENCL_LIBRARY=/usr/lib64/libOpenCL.so
make
that's how ive had to get it compiling on some nvidia machines.

then, after it's started compiling i break with ctrl-c and do

Code:
build/release/src
make -j4 simpleminer

then to get the wild_kecak.cl file for nvidia, do:

Code:
wget https://ottrbutt.com/tmp/wild_keccak_nv.cl -O wild_keccak.cl

or for amd:

Code:
wget https://ottrbutt.com/tmp/wild_keccak_amd.cl -O wild_keccak.cl

then to run it
Code:
./simpleminer --pool-addr cncoin.farm:1111 --login 1GU1ZLjjkeAYyGDkq1NebLcSq4BQA37ZTSqoXG5zfDkQdTjb71Tma8vNsqJ3uxRdrKe89b6josHBF1oxaxovPPYy47vN4CD --pass x --mining-threads 1 --device 0 --remote_scratchpad http://cncoin.farm/scratchpad.bin --local_scratchpad scratchpad.bin
replacing your address, pool info, and paths of course.