Hey,
HVC question:
Trying to compile the custom minerd.
Apt-got all needed libraries and I get this:
/usr/bin/ld: minerd-heavy.o: undefined reference to symbol 'SHA256_Init@@OPENSSL_1.0.0'
/lib/x86_64-linux-gnu/libcrypto.so.1.0.0: error adding symbols: DSO missing from command line
Any idea what I need to do?
Thanks
Do you have libssl-dev installed?
Fixed it by adding these 2 lines to configure.ac:
AC_CHECK_LIB([ssl],[SSL_library_init], [], [AC_MSG_ERROR([OpenSSL library required])])
AC_CHECK_LIB([crypto],[EVP_DigestFinal_ex], [], [AC_MSG_ERROR([OpenSSL library required])])