undefined reference to `dlopen‘ ‘SSL_library_init‘ `X509_certificate_type‘

使用Crow的时候需要注意crow依赖asio依赖OpenSSL,asio要求1.22以上版本,我使用的是1.26.0;

这个版本的asio要求OpenSSL是1.0.2,其他版本我得机器上编不过,ubuntu上默认带的OpenSSL是1.1.1;

所以我下载了OPENSSL1.2.0重装,地址: https://www.openssl.org/source/old/

编译cpp启用Crow的SSL时会出现一些问题:

比如:

  • 1 undefined reference to `SSL_library_init'

出现这个提示需要在编译时指定链接 crypto 和 ssl 库

  • 2 undefined reference to `dlopen'

出现这个提示需要在编译时指定链接 dl 库

  • 3 undefined reference to `X509_certificate_type'

出现这个提示需要在编译时指定链接openssl的位置;

  • 4 以上需要指定的库和地址都加上之后还是报错,可能是指令顺序问题;
    例如

    // ×
    g++ example_ssl.cpp -L/usr/local/openssl/lib -lssl -ldl -lcrypto -DCROW_ENABLE_SSL=1 -o ssl_example -std=c++11 -lpthread

    // √
    g++ example_ssl.cpp -L/usr/local/openssl/lib -lssl -lcrypto -DCROW_ENABLE_SSL=1 -o ssl_example -std=c++11 -lpthread -ldl

上面两行只是调整了 -ldl 所在的位置,就会消除部分错误,

具体原因参考

https://qastack.cn/programming/956640/linux-c-error-undefined-reference-to-dlopen

https://stackoverflow.com/questions/11893996/why-does-the-order-of-l-option-in-gcc-matter/11894098#11894098

相关推荐
其实防守也摸鱼3 小时前
DeepSeek Harness 开源贡献手记:从入门到合入主线
服务器·数据库·windows·https·ssl
其实防守也摸鱼6 小时前
堆叠注入(Stacked Injection)详解
服务器·数据库·windows·https·ssl
JamesShi1681 天前
华为云证书续费操作全流程,针对购买华为云企业门户建站的用户!
ssl
2601_967019511 天前
SSL 证书不止加密,还影响网站信任与 SEO
ssl
2601_967019512 天前
证书兼容性排查:SSL 部署后浏览器不安全告警分析
ssl
2601_967019513 天前
没有 SSL 证书的网站,会有哪些安全与流量损失?
ssl
一个心烑4 天前
配置项目git的 SSL 证书
git·网络协议·ssl
IT摆渡者6 天前
1panel 配置申请手动解析网站SSL证书
服务器·网络协议·ssl
IT摆渡者6 天前
1panel 针对HTTP自动续签SSL网站证书
网络协议·ssl·openresty
2601_967019517 天前
SSL证书是什么?HTTPS安全原理
ssl