如何使用 C++使用 pkg-config 增强库?
我成功编译并安装了最新版本的 Boost 库到我的 Linux 机器上。 现在,我希望能够使用 pkg-config 来简化提供 GCC 链接参数的过程。
由于我懒得手动编码自己的 .pc 文件,是否有一个脚本/工具可以自动生成所需的 .pc 文件或以其他方式使用 boost 标志更新 pkg-config ?
(如果有人已经拥有该 .pc 文件,也欢迎分享。)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找的功能似乎有点复杂,并且是一个长期要求的功能,如这篇 3 年前的帖子 https://svn.boost.org/trac/boost/ticket/1094 trac。通读它可以发现该功能被多次推迟并且从未实现(截至 1.4.3)。无法生成 pkg-config 可用的 .pc 文件的原因恰好与 boost 在命名其库版本/构建变体时不一致有关。
FWIW,“自动化”构建过程的另一种选择是使用自动工具(autoconf / automake)。有一个链接可能对您有用(我无法发布该链接,因为 SO 认为我是垃圾邮件发送者而不是新人!),只需谷歌“tsuna boost m4 github”,它应该会带您到那里:)
What you're looking for seems to be a bit complicated, and a long-requested feature, as indicated in this 3 year old post https://svn.boost.org/trac/boost/ticket/1094 on Boost's trac. Reading through it shows that the feature was repeatedly postponed and never implemented (as of 1.4.3). The cause of the inability to generate a .pc file usable by pkg-config happens to do with boost's inconsistency in naming their library versions / build variants.
FWIW, an alternative for "automating" your building process is to use autotools (autoconf/automake). There's a link that might be of use to you (which I can't post because SO thinks I'm a spammer instead of a newcomer!), just google "tsuna boost m4 github" and it should take you there :)
在提升方面也面临着类似的问题。编写了简单的 python 脚本来生成 .pc 文件。免除了我编写所有链接器命令的痛苦。我已将其发布在 https://github.com/nmante/pkg-config-generator。
本质上,您为脚本提供了一个库文件所在的目录(.so、.a、.dylib 文件),它将生成链接器命令(例如 -lboost_graph)。请随意根据您的需求进行调整和分叉。
这是我为我的机器 (Mac OS X) 生成的示例 boost.pc 文件。您可以手动调整它,也可以使用我的 github 程序 在您的计算机上生成它。
Was facing a similar issue with boost. Wrote simple python script to generate a .pc file. Saved me the pain of having write all the linker commands. I've posted it on https://github.com/nmante/pkg-config-generator.
Essentially, you give the script a directory where the library files are (.so, .a, .dylib files) and it will generate the linker commands (e.g. -lboost_graph). Feel free to tweak and fork to your needs.
Here's a sample boost.pc file I generated for my machine (Mac OS X). You can tweak it manually, or you can use my github program to generate it on your machine.