英文:
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 <c_file> -lcurl -o <executable>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论