*.lib - 静态与否?
我将一些源文件编译成单独的 *.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可执行文件在执行时通过文件映射对象进行映射。因此,从技术上讲,只有实际使用的 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.