XCode 7 debugger breakpoints not being triggered in sub-projects

Finding that in Xcode 7 and breakpoints which I have in a sub project including in a parent project are not being triggered. Has anyone else experienced this?

Replies

Hi,


I am experiencing a similar issue, none of my breakpoints are being triggered. I've even added NSLog statements in my code which are being triggered, but the runtime is not halting execution on any breakpoints. I'm using XCode 7.0.1 (7A1001) and OS X Yosemite (10.10.5).


Any idea how to fix? I'm going to install all updates. Last resort will be to upgrade to El Capitan. I'll re-post if anything I do fixes the issue.


Thanks

Are the breakpoints being set? What does:

(lldb) break list -v

in the Debugger console say? If the breakpoints show up but are marked "pending" that means there was something wrong with how they were specified. If that is true, what happens if you try to set them by hand in the console. I.e.:


(lldb) break set -f <FILENAME> -l <LINENUMBER>