在32位Windows上使用libcurl

时间:2018-02-14 19:36:23

标签: c++ compilation libcurl

我试图在32位Windows安装上使用libcurl进行编译。我使用mingw作为编译器。我从https://bintray.com/artifact/download/vszakats/generic/curl-7.58.0-win32-mingw.7z下载了libcurl,并使用它来编译我的项目:

g++ -o test.exe -g just_get_output.cpp http_requests.cpp -L C:\curl-7.58.0-win32-mingw\lib -lcurl -lpsapi

所有libcurl代码都在http_requests.cpp中:

#include <stdio.h>
#define CURL_STATICLIB
#include <curl/curl.h>

// https://kukuruku.co/post/a-cheat-sheet-for-http-libraries-in-c/

int http_post(char* url, char* data)
{
    CURL *curl;
    CURLcode res;

    curl_global_init(CURL_GLOBAL_ALL);

    curl = curl_easy_init();
    if(curl) 
    {
        curl_easy_setopt(curl, CURLOPT_URL, url);
        curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data);
        res = curl_easy_perform(curl);
        if(res != CURLE_OK)
        {
            fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res));
        }
        curl_easy_cleanup(curl);
    }
    curl_global_cleanup();
    return 0;
}

我的主要代码,经过严格修改:

#include <stdio.h>
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <windows.h>
#include <tchar.h>
#include <psapi.h>
#include "http_requests.cpp"

int main( void ) {
    std::string info = "test";
    std::string url = "192.168.30.1:8080";
    http_post(url, info)
    return 0;
}

我得到的错误:

Z:\>g++ -o test.exe -g just_get_output.cpp http_requests.cpp -L C:\curl-7.58.0-win32-mingw\lib\libcurl.a -lcurl -lpsapi
In file included from just_get_output.cpp:11:0:
http_requests.cpp:3:23: fatal error: curl/curl.h: No such file or directory
 #include <curl/curl.h>
                       ^
compilation terminated.
http_requests.cpp:3:23: fatal error: curl/curl.h: No such file or directory
 #include <curl/curl.h>
                       ^
compilation terminated.

发生了什么事?我的预编译libcurl.a位于正确的目录中,我使用-L和-l正确链接它,我不知道我错过了什么。

2 个答案:

答案 0 :(得分:1)

这是编译错误。它期望curl / curl.h上面的目录位于包含路径上。

对于任何其他人来说,你可以使用-I(大写字母I)链接到C:\ curl-7.58.0-win32-mingw \ include。谢谢@RichardCritten!

答案 1 :(得分:1)

与往常一样,您应阅读the documentation

  

编译程序

     

您的编译器需要知道libcurl头的位置。因此,必须将编译器的include路径设置为指向安装它们的目录。 'curl-config'[3]工具可用于获取此信息:

     

$ curl-config --cflags

我没有使用过libcurl但是,根据这个页面,我认为你应该执行的是:

g++ -o test.exe -g \
   just_get_output.cpp http_requests.cpp \
   `curl-config --cflags` \
   `curl-config --libs`

现在,您将正确安排所需的参数。