如何在c++中扩展.lib及其源代码?

发布于 2024-09-27 10:57:35 字数 106 浏览 3 评论 0原文

现在我的问题需要一个 .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 技术交流群。

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

发布评论

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

评论(1

郁金香雨 2024-10-04 10:57:35

如果您编译包含调试信息的 .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.

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