*.lib - 静态与否?

发布于 2024-12-11 06:24:37 字数 199 浏览 0 评论 0原文

我将一些源文件编译成单独的 *.obj 模块,然后将它们链接到 *.lib 静态库并与另一个可执行文件链接在一起。 Windows操作系统如何处理这种情况,我的意思是它总是将整个可执行文件加载到内存中,还是只加载运行时必需的部分?

我问这个问题,因为我使用的分析程序(代码覆盖率)没有覆盖它应该覆盖的所有文件,所以看起来 lib 文件的某些部分在程序执行时不在内存中。

I compile some source files into seperate *.obj modules, then I link them into *.lib static library and link together with another executable. How does Windows OS handles such situations, I mean will it always load whole executable file into memory, or only the parts that are necessary at runtime?

I ask this question, since the profiling programm (code coverage) I use does not cover all the files that it should, so it looks like some parts of the lib file are not in the memory while programm execution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

怼怹恏 2024-12-18 06:24:37

可执行文件在执行时通过文件映射对象进行映射。因此,从技术上讲,只有实际使用的 exe 页面才会从磁盘加载。

The executable file is mapped via a file mapping object when it is executed. Therefore, technically only pages of the exe that are actually used will get loaded from disk.

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