/ usr / bin / ld: cannot find -ssl

I am trying to install a script on my server. But this does not complete the work in the last step.

./make.sh /usr/bin/ld: cannot find -lssl collect2: ld returned 1 exit status 

How to fix the problem above?

Centos 6.4 Final x86_64

+4
source share
1 answer

You need to install the open ssl developer package:

 yum -y install openssl-devel 
+2
source

Source: https://habr.com/ru/post/1498854/


All Articles