lcrypto专题

小议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