我对卷曲的编译有问题,如果有的话会很棒 某人可以帮我这个。
我使用了curl的示例代码:
#include <stdio.h>
#include <curl/curl.h>
int main(int argc, char **argv){
CURL *curl;
CURLcode res;
/* In windows, this will init the winsock stuff */
//curl_global_init(CURL_GLOBAL_ALL);
/* get a curl handle */
curl = curl_easy_init();
if(curl) {
/* First set the URL that is about to receive our POST. This URL can
just as well be a https:// URL if that is what should receive the
data. */
curl_easy_setopt(curl, CURLOPT_URL, "http://postit.example.com/moo.cgi");
/* Now specify the POST data */
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "name=daniel&project=curl");
/* Perform the request, res will get the return code */
res = curl_easy_perform(curl);
/* Check for errors */
if(res != CURLE_OK)
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
/* always cleanup */
curl_easy_cleanup(curl);
}
curl_global_cleanup();
return 0;
printf("Hello World\n");
}
但是得到这个编译错误:
main.cpp:(.text+0x10): Nicht definierter Verweis auf `curl_easy_init'
main.cpp:(.text+0x36): Nicht definierter Verweis auf `curl_easy_setopt'
main.cpp:(.text+0x51): Nicht definierter Verweis auf `curl_easy_setopt'
main.cpp:(.text+0x5d): Nicht definierter Verweis auf `curl_easy_perform'
main.cpp:(.text+0x70): Nicht definierter Verweis auf `curl_easy_strerror'
main.cpp:(.text+0x98): Nicht definierter Verweis auf `curl_easy_cleanup'
main.cpp:(.text+0x9d): Nicht definierter Verweis auf `curl_global_cleanup'
这意味着,功能没有链接。
也许我忘了要安装的东西? 我告诉你这个过程,我现在如何安装curl:
cd /usr/local/src/
wget http://curl.haxx.se/download/curl-7.53.1.tar.gz
sudo wget http://curl.haxx.se/download/curl-7.53.1.tar.gz
tar -xvzf curl-7.53.1.tar.gz
sudo tar -xvzf curl-7.53.1.tar.gz
sudo rm *.gz
cd curl-7.53.1/
./configure
sudo ./configure
sudo make
sudo make install
没有愤怒的谷歌它的反应,请。 我已经用Google搜索了很长时间。