yum 中的 lib 和 lib-devel 有什么不同?

发布于 2024-11-02 09:58:02 字数 241 浏览 0 评论 0原文

我正在编译一个依赖于libpcap的软件,所以我yum install libpcap,但是当我./configure时它仍然报告can't找到 libpcap,所以我运行 yum install libpcap-devel ,这次它起作用了。

我的问题是,当它说找不到 libpcap 时,有什么区别以及 ./configure 到底在寻找什么?

I'm compiling a software that depends on libpcap,so I yum install libpcap,but when I ./configure it still reports can't find libpcap,so I run yum install libpcap-devel and this time it works.

My question is,what's the difference and what exactly was ./configure looking for when it says libpcap not found?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最后的乘客 2024-11-09 09:58:02

“lib”包含程序运行所需的内容(“.so”文件)。 “lib-devel”包含程序需要编译的内容(头文件)。

"lib" contains the things your program needs to run (the ".so" file). "lib-devel" contains the things your program needs to compile (the header files).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文