你可以在Fedora上使用curl C库的方法是:

huangapple go评论70阅读模式
英文:

How can I use the curl C library on Fedora?

问题

当我尝试编译一个包含 #include <curl/curl.h> 的 C 文件时,我得到以下错误:错误:curl/curl.h:没有那个文件或目录

我已经安装了 curl 包。

我需要指定一些命令行参数来使用它吗?还是需要安装其他包?

英文:

When I try to compile a C file containing #include <curl/curl.h> I get the following error: Error: curl/curl.h: no such file or directory.

I have the curl package installed.

Do I need to specify some command line argument to use it? Or install some other package?

答案1

得分: 2

你需要安装libcurl-devel软件包。从命令行执行以下命令:sudo dnf install libcurl-devel

然后在编译文件时需要设置-lcurl选项。例如,使用clang编译器:clang <c_file> -lcurl -o <executable>

英文:

You need to install the libcurl-devel package. From command line: sudo dnf install libcurl-devel.

Then you need to set the -lcurl option when compiling the file. For instance, using clang: clang &lt;c_file&gt; -lcurl -o &lt;executable&gt;

huangapple
  • 本文由 发表于 2023年8月8日 22:40:22
  • 转载请务必保留本文链接:https://go.coder-hub.com/76860630.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定