We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello. I have cloned the repository and sent './configure' as well as 'make'. On 'make', I receive two errors. Below is the output:
x@xx:/truecrack$ sudo make make all-recursive make[1]: Entering directory '/truecrack' Making all in src make[2]: Entering directory '/truecrack/src' cat Cuda/Core.cu > Cuda.cu cat Cuda/Pkcs5.cu >> Cuda.cu cat Cuda/Aes.cu >> Cuda.cu cat Cuda/Serpent.cu >> Cuda.cu cat Cuda/Twofish.cu >> Cuda.cu cat Cuda/Crypto.cu >> Cuda.cu cat Cuda/Xts.cu >> Cuda.cu cat Cuda/Rmd160.alternative.cu >> Cuda.cu cat Cuda/Sha2.cu >> Cuda.cu cat Cuda/Whirlpool.cu >> Cuda.cu nvcc -c Cuda.cu -g -I./Common/ -I./Crypto/ -I./Cuda/ -I./Main/ -I./ -I/usr/local/cuda/include/ -D_GPU_ -gencode arch=compute_10,code=sm_10 -gencode arch=compute_20,code=sm_20 -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -ftz=true -use_fast_math --opencc-options -OPT:Olimit=0 -o Cuda.o /bin/bash: nvcc: command not found make[2]: *** [Makefile:437: Cuda.o] Error 127 make[2]: Leaving directory '/truecrack/src' make[1]: *** [Makefile:360: all-recursive] Error 1 make[1]: Leaving directory '/truecrack' make: *** [Makefile:246: all] Error 2
The text was updated successfully, but these errors were encountered:
Figured it out. Needed to run './configure --enable-cpu' first.
Sorry, something went wrong.
No branches or pull requests
Hello. I have cloned the repository and sent './configure' as well as 'make'. On 'make', I receive two errors. Below is the output:
x@xx:/truecrack$ sudo make make all-recursive make[1]: Entering directory '/truecrack' Making all in src make[2]: Entering directory '/truecrack/src' cat Cuda/Core.cu > Cuda.cu cat Cuda/Pkcs5.cu >> Cuda.cu cat Cuda/Aes.cu >> Cuda.cu cat Cuda/Serpent.cu >> Cuda.cu cat Cuda/Twofish.cu >> Cuda.cu cat Cuda/Crypto.cu >> Cuda.cu cat Cuda/Xts.cu >> Cuda.cu cat Cuda/Rmd160.alternative.cu >> Cuda.cu cat Cuda/Sha2.cu >> Cuda.cu cat Cuda/Whirlpool.cu >> Cuda.cu nvcc -c Cuda.cu -g -I./Common/ -I./Crypto/ -I./Cuda/ -I./Main/ -I./ -I/usr/local/cuda/include/ -D_GPU_ -gencode arch=compute_10,code=sm_10 -gencode arch=compute_20,code=sm_20 -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -ftz=true -use_fast_math --opencc-options -OPT:Olimit=0 -o Cuda.o /bin/bash: nvcc: command not found make[2]: *** [Makefile:437: Cuda.o] Error 127 make[2]: Leaving directory '/truecrack/src' make[1]: *** [Makefile:360: all-recursive] Error 1 make[1]: Leaving directory '/truecrack' make: *** [Makefile:246: all] Error 2
The text was updated successfully, but these errors were encountered: