1

i use ubuntu 14.04. i have a program and get the following 3 error messages during compilation.

/usr/bin/ld: cannot find -lcurl
/usr/bin/ld: cannot find -lssl
/usr/bin/ld: cannot find -lcrypto

i searched in google and after installing libssl-dev with

sudo apt-get install libssl-dev

command i only have the following line in logs.

/usr/bin/ld: cannot find -lcurl

How can i install curl and get rid of this message.

Regards

mehmet riza oz
  • 541
  • 6
  • 18

1 Answers1

2

Try libcurl4-openssl-dev, or one of the other flavours if you need it.

viraptor
  • 33,322
  • 10
  • 107
  • 191