将多个静态库合并到一个GCC scons中
我正在构建这个库 libmyproject.a 我希望它包含其他几个静态库(libone.a 和 libtwo.a),以便与 libmyproject 链接的应用程序不必也与 libone 和 libtwo 链接。
我是海湾合作委员会链的新手。使用 Visual C++,我只需添加所有依赖项,它就会创建一个库,其中还包含我想要的所有其他库。
我如何使用 GCC 来实现这一目标?
一个额外的问题:我正在使用 scons 来构建,有没有办法告诉 scons 这样做? 现在它只是忽略我提供的所有附加库,仅将 .cpp 文件编译到库中。
I'm building this library, libmyproject.a
I want it to include several other static libraries (libone.a and libtwo.a), so that the application that links with libmyproject doesn't have to link with libone and libtwo as well.
I'm new to the GCC chain. With Visual C++, I would just add all dependencies and it would create a lib which also includes all other libs that I want in it.
How can I accomplish this with GCC ?
A bonus question: I'm using scons to build, is there a way to tell scons to do this ?
Right now it just ignores all the additional libs that I supply and only compiles the .cpp files into the library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用ar(binutils)对归档文件的操作。我使用一个简单的 Perl 脚本来进行合并:
在 SCons 中调用脚本:
当然,您可以使用 SCons 中的 Python 函数来合并库。我更喜欢使用单独的脚本,因此它可以像任何其他构建工具一样从命令行运行。
You have to use ar (binutils) for operations on archive files. I am using a simple Perl script to do the merging:
To invoke the script in SCons:
Of course, you can merge libraries using Python function inside SCons. I prefer using a separate script, so it can be run from command line as any other build tool.