调试符号在链接过程中丢失...?

发布于 2024-11-14 20:44:31 字数 230 浏览 4 评论 0原文

我正在使用 XCode 3.2 进行 iOS 开发。我使用 -g 选项在调试模式下将代码编译到静态库中。然后,我将此库与一个更大的静态库链接,该静态库具有 main 来创建最终的可执行文件。该库是在发布模式下构建的,没有任何调试支持。现在,当调试崩溃时,我看不到代码的符号。他们去哪儿了?它们被链接器剥夺了吗?如何使链接器保留我的库的调试信息?我无法控制其他图书馆,因此我无法在那里做任何事情。

I am developing for iOS with XCode 3.2. I compiled my code in debug mode with the -g option into a static library. I then linked this library with a bigger static library which has the main to create the final executable. This library was built in release mode without any of the debugging support. Now when debugging crashes, I don't see the symbols for my code. Where did they go? Were they stripped by the linker? How can I make the linker retain the debugging information for my library? I have no control over the other library so I won't be able to do anything there.

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

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

发布评论

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

评论(1

无声静候 2024-11-21 20:44:31

如果您可以构建库,请在构建设置中

  • 为库和代码使用相同的调试信息格式。例如,将“DWARF with dSYM File”与“DWARF”混合将不会显示符号
  • 使用任何与“strip”相关的标志构建为“否”(或部署后处理“否”)

If you can build your library, in the Build Settings

  • Use the same Debug Information Format for both the library and your code. mixing for example "DWARF with dSYM File " with "DWARF" will not display the symbols
  • Build it with any flag related "strip" to NO (or deployment Postprocessing NO)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文