Post
Topic
Board Bitcoin Discussion
Merits 5 from 1 user
Re: == Bitcoin challenge transaction: ~100 BTC total bounty to solvers! ==UPDATED==
by
alek76
on 09/04/2020, 14:12:00 UTC
⭐ Merited by akk123 (5)
Quote
used cpu Huh
Set -t 0 -gpu -bits

No I don't use cpu. It works with uncompressed keys though. I guess it is todo with "searchMode".
The searchType and searchMode options are not used by the program.
Uncompressed and compressed keys are not used by the program.
Original Readme:
Code:
## Linux
Intall CUDA SDK.\
Depenging on the CUDA SDK version and on your Linux distribution you may need to install an older g++ (just for the CUDA SDK).\
Edit the makefile and set up the good CUDA SDK path and appropriate compiler for nvcc.
```
CUDA       = /usr/local/cuda-8.0
CXXCUDA    = /usr/bin/g++-4.8
```
You can enter a list of architectrure (refer to nvcc documentation) if you have several GPU with different architecture. Compute capability 2.0 (Fermi) is deprecated for recent CUDA SDK.
VanitySearch need to be compiled and linked with a recent gcc (>=7). The current release has been compiled with gcc 7.3.0.\
Go to the VanitySearch directory. ccap is the desired compute capability.
```
$ g++ -v
gcc version 7.3.0 (Ubuntu 7.3.0-27ubuntu1~18.04)
For RTX 2070 command: $ make gpu=1 ccap=75 all
Try change gcc version or Linux distribution.