yum 中的 lib 和 lib-devel 有什么不同?
我正在编译一个依赖于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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“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).