Dmitry, On Thu, Jul 11, 2019 at 06:07:32PM +0300, Vitaly Chikunov wrote: > On Thu, May 23, 2019 at 03:26:20PM +0300, Dmitry Eremin-Solenikov wrote: > > There is no need to link to full libssl. evmctl uses functions from > > libcrypto, so let's link only against that library. > > Btw, this breaks my tests in my set up with gost-engine, making evmctl > crash on OPENSSL_init_crypto (in bind_gost). Did not investigate real > cause yet. I test with latest version of gost-engine (e372739) and > openssl 0fc4d00a00. Sorry, this was my set up failure. Previously I was defining `OPENSSL_LIBS="-L$HOME/src/openssl -lssl -lcrypto"` to link with custom OpenSSL build. Now I should just define `LIBCRYPTO_LIBS="-L$HOME/src/openssl -lcrypto"` instead. So there is no error in these commits. Thanks,