vote up 0 vote down star

So I downloaded the zip file from the curl website. I copied the directory with all of the header files into my include directory. Including the curl.h works with no problems, however, when I go to actually call a function, suddenly my c++ app will no longer compile.

Here's the error I'm receiving:

 [Linker error] undefined reference to
 `curl_easy_init'

Here's the code:

#define CURL_STATICLIB
#include <curl/curl.h>
#include <string>
#include <iostream>
using namespace std;

int main() {
      string url = "http://www.google.com";
      cout << "Retrieving " << url << endl;

      // Our curl objects
      CURL *curl;
      CURLcode result;

      // Create our curl handle  
      curl = curl_easy_init();  

    system("pause");

    return 0;
}

It works fine if I comment out the curl=curl_easy_init() line.

According to the documentation this should work, as seen here.

Any ideas?

flag

Post the error you get. Most likely this is a linking problem... – ephemient Nov 3 at 19:14
Edited...can't believe I missed that. – Cory Dee Nov 3 at 19:21
Post your command line args for linker. You probably forgot to tell linker you need curl. It can't guess which of the hundreds available libraries contains the symbols you need. – Arkadiy Nov 3 at 19:30
I'm not doing anything in command line, this is compiling/running on windows. – Cory Dee Nov 3 at 19:31
1  
Then you should have a place in project options to add libraries. Did you add curl? – Arkadiy Nov 3 at 19:33
show 2 more comments

1 Answer

vote up 4 vote down

you must link your program with the curl library

-L/path/of/curl/lib/libcurl.a (g++)

or add curl in your solution

Solution->properties->Link(ing) and add libcurl.lib
link|flag
There is no libcurl.a in curl.haxx.se/download/curl-7.19.6.zip – Cory Dee Nov 3 at 19:47
is there a .so? – sean riley Nov 4 at 0:08
No. There's libcurl.imp, .plist, .rc and .vcproj, but no .a or .so – Cory Dee Nov 4 at 15:32
have you compiled it ? ./configure make make install or have you built it with Visual studio ? – Nadir SOUALEM Nov 4 at 16:18
No, I was under the impression I could include the headers and it would just work from there? – Cory Dee Nov 4 at 19:46
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.