环境ubuntu
内核
Linux ntt-misc 4.4.0-93-generic #116-Ubuntu SMP Fri Aug 11 21:17:51 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
部分ssl代码:
ssl_method = SSLv3_server_method();
ssl_ctx = SSL_CTX_new(ssl_method);
if (ssl_ctx == NULL)
{
// 这里可能出错退出
ERR_print_errors_fp(stdout);
return -1;
}
g++ -g -DRELEASE test.cpp -I../ -lssl -lcrypto -lpthread -lcurl -o test
这种方式执行出错
140304116860600:error:140A90C4:lib(20):func(169):reason(196):ssl_lib.c:1878:
查了下原因应该是系统库中的ssl库不支持sslv3导致,看系统中用的ssl库是1.0.2g版本
所以就从ssl官方下载了1.0.2g的源码重新编译出静态库进行编译
make
g++ -g -DRELEASE test.cpp -I../ libssl.a libcrypto.a -lpthread -lcurl -o test
出错:
/usr/bin/ld: libcrypto.a(dso_dlfcn.o): undefined reference to symbol 'dlclose@@GLIBC_2.2.5'
//lib/x86_64-linux-gnu/libdl.so.2: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
改成g++ -g -DRELEASE test.cpp -I../ -ldl libssl.a libcrypto.a -lpthread -lcurl -o test
也是一样的错误
改成 g++ -g -DRELEASE test.cpp -I../ libssl.a libcrypto.a -ldl -lpthread -lcurl -o test
成功编译,看来是-ldl的位置有要求。
作者:帅得不敢出门 程序员群:31843264
给主人留下些什么吧!~~
评论热议