Xcode debugger showing assembler for nested classes in a static library

Posted by Massif on Stack Overflow See other posts from Stack Overflow or by Massif
Published on 2012-08-29T21:36:06Z Indexed on 2012/08/29 21:38 UTC
Read the original article Hit count: 173

I have a project A which creates a static library. I have a project B which uses this library.

When I am debugging project B, certain functions within project A will display assembler when stepped into or when a breakpoint set inside them is hit. In the debug navigator, the line containing the function is grey instead of black. The strange part is that other functions in the same source file have no problems displaying. The thing that all these functions seem to have in common is that they belong to nested classes. However, I'm not totally convinced that this is the issue since functions from other nested classes display correctly.

Does anyone know the cause of this?

© Stack Overflow or respective owner

Related posts about xcode

Related posts about debugging