使用 VS2008 SP1 将多个静态 .lib 文件链接到一个整体 .lib 文件,而无需先提取 .lib 文件

发布于 2024-10-07 08:14:53 字数 419 浏览 3 评论 0原文

我在 另一个问题是这样的:如果不首先使用LIB.EXE命令提取.lib文件,如何将所有.obj存档成员组合在一起以形成一个更大的整体.lib文件?如果我使用 LIB.EXELINK.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猥︴琐丶欲为 2024-10-14 08:14:53

你不能。

将静态链接 .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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文