gpt4 book ai didi

c++ - 在 Windows 7 中使用用于 Dev-C++ 的 cURL 库时遇到问题

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:34:53 26 4
gpt4 key购买 nike

我最近使用 Dev-C++ 安装中包含的 Packman.exe 在 Dev-C++ 中安装了 cURL 库。当我尝试使用 #include <curl/curl.h>我没有收到错误,所以我假设它安装正确。但是,当我尝试从 cURL 网站编译示例时,出现以下错误:

[Linker error] undefined reference to _imp__curl_easy_init
[Linker error] undefined reference to _imp__curl_easy_setopt
[Linker error] undefined reference to _imp__curl_easy_perform
[Linker error] undefined reference to _imp__curl_easy_cleanup

我使用的源码如下:

#include <stdio.h>
#include <curl/curl.h>
int main(void)
{
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
}
return 0;
}

谢谢! :)

最佳答案

要使用(已编译的)库,您需要做两件事:

  • 添加 #include 以便编译器知道该库。
  • 添加 .lib(或 .a)以便链接器知道在哪里可以找到已编译库的代码。

您可能错过了后者。不过,我不使用 Dev-C++,因此我无法帮助您了解如何添加它。

关于c++ - 在 Windows 7 中使用用于 Dev-C++ 的 cURL 库时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6400283/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com