How to use the debugger with nested static libraries in XCode?

Posted by EightyEight on Stack Overflow See other posts from Stack Overflow or by EightyEight
Published on 2010-04-27T01:28:32Z Indexed on 2010/04/27 1:33 UTC
Read the original article Hit count: 298

Filed under:
|
|
|
|

Hi all,

A project that I've inherited has the following structure:

Project A produces a static library.

Project B produces a static library and links with library A.

Project C produces the executable and links with library B.

When I run app in debug mode, I can successfully debug code within the executable (project C) and the static library from project B. I can't, however, debug anything in the Project A library -- my breakpoints are ignored. I've checked and made sure that debug symbols are enabled and not stripped. Is there something else I'm missing?

Thanks

© Stack Overflow or respective owner

Related posts about xcode

Related posts about iphone