如何在c++中扩展.lib及其源代码?
现在我的问题需要一个 .lib
并且我已经获取了该库的所有源代码,如何用其源代码替换 .lib
依赖项以便我可以跟踪直接在源代码级别而不是反汇编?
Now my problem requires a .lib
and I've grabbed all the source for that library,how can I replace the .lib
dependance with its source code so that I can trace directly in source level instead of disassembly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您编译包含调试信息的
.lib
文件的源文件,那么您可以继续将.lib
文件链接到可执行文件中,调试器将知道如何找到源文件。您目前可能正在使用编译时没有调试信息的
.lib
文件,因此调试器将不支持该代码的源代码级调试。If you compile the source files for the
.lib
file with debugging information included, then you can continue to link the.lib
file into your executable and the debugger will know how to find the source files.You may be using a
.lib
file at the moment that's compiled without debugging information, so the debugger will not support source-level debugging of that code.