Xcode debugger showing assembler for nested classes in a static library
- by Massif
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?