使用 VS2008 SP1 将多个静态 .lib 文件链接到一个整体 .lib 文件,而无需先提取 .lib 文件
我在 另一个问题是这样的:如果不首先使用LIB.EXE
命令提取.lib文件,如何将所有.obj存档成员组合在一起以形成一个更大的整体.lib文件?如果我使用 LIB.EXE
或 LINK.EXE
实用程序,则会省略一些 .obj 文件,大概是因为省略的 .obj 文件中没有定义所需的符号通过任何其他 .obj 文件。
如果不下载和安装其他非 Microsoft 软件,也不先解压所有 .obj 文件,如何将它们组合在一起?
A basic question I have during my other question is this: Without first extracting the .lib files using the LIB.EXE
command, how to I combine all .obj archive members together to form one larger monolithic .lib file? If I use the LIB.EXE
or LINK.EXE
utilities, some .obj files are omitted, presumably because there are no symbols defined in the omitted .obj files that are required by any other .obj file.
Without downloading and installing additional non-Microsoft software, and without first extracting all .obj files first, how do I combine them together?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。
将静态链接 .lib 文件视为包含一些目标文件的 zip 文件或 tar 文件。
因此,您必须使用 lib /list 找出内容是什么,然后使用 lib /extract 提取每个对象(一个接一个,这是乏味的部分),一旦一切准备就绪,就可以构建新的 .库。
如果您熟练使用脚本语言(Perl、Python...),那么自动化这项工作就不会太难。如果您愿意,可以使用批处理命令(查找“for /F”;您将需要它)来完成此操作。
You can't.
Think of a static-link .lib file as just a zipfile or tarfile containing some object files.
So you will have to find out what the contents are using lib /list, then extract each object out (one by one, that's the tedious part) using lib /extract, and once you've got everything ready, you build your new .lib.
If you're handy with a scripting language (Perl, Python, ...) it wouldn't be too hard to automate this chore. You could do it with batch commands (look for "for /F"; you'll need it) if you prefer.