Post
Topic
Board Development & Technical Discussion
Re: VanitySearch (Yet another address prefix finder)
by
inlovewiththedj
on 27/05/2020, 13:38:43 UTC
-snip-
I installed CUDA SDK and Toolkit but
I have an error. PLEASE HELP
-snip
make: /usr/local/cuda-8.0/bin/nvcc: Command not found
Makefile:63: recipe for target 'obj/GPU/GPUEngine.o' failed
make: *** [obj/GPU/GPUEngine.o] Error 127

Probably you have the different vesrion of CUDA, not 8.0

Test the version of your cuda through the command:
$ nvcc --version

It will show the version of your CUDA compiler driver.
Also you can go to /usr/local and find the folder with CUDA (cuda-8.0 or cuda-10.2)

Then open the Makefile (in Kangaroo project) and edit the folder for CUDA
You will find a line:
CUDA    = /usr/local/cuda-8.0

Change it to your cuda driver folder like this:
CUDA    = /usr/local/cuda-10.2

Save the edited Makefile and run the make command again (do not forget to run make clean as I wrote before)

It should work now.

I tried today install VanitySearch in Cygwin64 Terminal.
But i have an error, can You help me?

Code:
$ make all
mkdir -p obj
cd obj &&       mkdir -p GPU
cd obj &&       mkdir -p hash
g++ -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/Base58.o -c Base58.cpp
make: g++: No such file or directory
make: *** [Makefile:68: obj/Base58.o] Error 127

and then i nawigate to VanitySearch-1.17 and run command

Code:
oem@test /cygdrive/c/test/VanitySearch/VanitySearch-1.17
$ ./VanitySearch -t 2 1TryMe
-bash: ./VanitySearch: No such file or directory

as You can see i have an error

please help