libcurl c ++ curl_easy_init终止,没有任何异常

时间:2016-07-15 21:07:53

标签: c++ eclipse windows-7 libcurl

我正在尝试使用 libcurl 发出HTTP请求。

我正在使用 Windows 7 (64位)+ eclipse MARS (64位)+ 卷曲7.40.0 。我为编译器和链接器配置了包含(-I)和库(-L)。

以下是代码:

#include <iostream>
#include <curl/curl.h>

int main() {
    CURL *curl;
    std::cout << "Before";
    curl = curl_easy_init();
    std::cout << "After";
    return 0;
}

我能够在代码块中使用此代码。

然而,程序在Eclipse中崩溃了。它终止而不会出现任何错误。

0 个答案:

没有答案