gpt4 book ai didi

使用curl从互联网下载文件的C代码

转载 作者:行者123 更新时间:2023-11-30 21:40:09 28 4
gpt4 key购买 nike

我看到了一些与该主题相关的 C 代码。我已经尝试过,但只有我收到错误,说有一堆curl.h错误。我用谷歌搜索了很多但找不到好的答案。我使用的是 CCS C 编译器版本 v5.008。我真的很想尽快解决这个问题。

我尝试从以下链接编译代码。

enter link description here

#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");
/* example.com is redirected, so we tell libcurl to follow redirection */
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);

/* 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);
}
return 0;
}

给我错误:“错误 119”C:\Users\Sisitha\Documents\CCS C Projects\Testing\curl\curlbuild.h”第 556 行(145,183):“未知的非配置构建目标”“

我使用的是 Windows 7(64 位)

请帮我解决这个问题。谢谢!

最佳答案

curl 使用 GNU 自动工具从源代码构建。有一个要构建和配置的库,用于示例程序和头文件,以进行链接。错误:

Error 119"C:\Users\Sisitha\Documents\CCS C Projects\ Testing\curl\curlbuild.h" Line 556(145,183): " Unknown non-configure build target"

表明您包含的curl.h 尚未通过标准GNU ./configure 配置;制作; make install 构建顺序。

Curl安装说明Install -- how to install curl

关于使用curl从互联网下载文件的C代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24366571/

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