首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
lssl专题
编译出现“/usr/bin/ld cannot find -lssl“问题
openssl库已经安装好 编译出现/usr/bin/ld cannot find -lssl“问题 输入cat /etc/ld.so.conf 显示 include ld.so.conf.d/*.conf /usr/local/ssl/lib /usr/local/lib/ 在makefile 中修改地址即可 LIBS = -L /usr/local/ssl/lib/。。。。。。。。
阅读更多...
小议linux中的软链接------顺便谈谈为什么编译有时会出现cannot find -lssl, cannot find -lcrypto
linux中的软链接其实是很好理解的, 非常类似于Windows下的快捷方式, 我们来做个简单的实验玩玩: [taoge@localhost test]$ echo hello > a.txt[taoge@localhost test]$ ln -s a.txt b.txt[taoge@localhost test]$ diff a.txt b.txt [taoge
阅读更多...