On Wed, Jun 3, 2009 at 8:42 AM, Kushan Thakkar <[email protected]> wrote: [...] > When I run this code, I get the following four errors: > > "_curl_easy_perform", referenced from: > _main in main.o > "_curl_easy_setopt", referenced from: > _main in main.o > "_curl_easy_cleanup", referenced from: > _main in main.o > "_curl_easy_init", referenced from: > _main in main.o > ld: symbol(s) not found > collect2: ld returned 1 exit status
Xcode doesn't know what library to link with. You will need to tell it to link with libcurl. Not sure exactly how you do that, though. -- Michael Wood <[email protected]>
