You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compilation is failing. It seems from the error message that the type BIGNUM doesn't exist:
cc -ggdb -O3 -Wall -c -o vanitygen.o vanitygen.c
In file included from vanitygen.c:32:0:
pattern.h:54:12: error: field ‘vxc_bntarg’ has incomplete type
BIGNUM vxc_bntarg;
^~~~~~~~~~
The text was updated successfully, but these errors were encountered:
After some investigation it turns out that it's trying to compile against the wrong version of OpenSSL. I fixed the problem by modifying the CFLAGS and LIBS variables to include the OpenSSL 1.0 headers and library:
Compilation is failing. It seems from the error message that the type
BIGNUM
doesn't exist:The text was updated successfully, but these errors were encountered: