查找我需要包含哪些库文件来实现特定的 c 头文件
如果没有同名的库,如何找到实现特定 c 头文件所需包含的库文件?
How do I find what library files I need to include for the implementation of a particular c header if there is not library with the same name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会在 Google 上搜索标头的名称或其中的函数。
如果您使用的是基于 Debian 的系统,您还可以尝试 dpkg -S <完整标头路径> 告诉您哪个包提供了标头,然后查看其他文件(在
/ usr/lib
) 是同一个包提供的。I'd Google for the name of the header or the functions within it.
If you're on a Debian-based system you could also try
dpkg -S <full header path>
to tell you what package provided the header, then see what other files (in/usr/lib
) that same package provides.