Breakpoints Don't Get Into Xcode 7

I have an Xcode project that includes a sub-project. After upgrading to Xcode 7, the breakpoints in the subproject were not affected, and I cannot enter the subproject function calls. Some breakpoints hit, but they just show the assembly to call, so it seems that the subproject is not showing correctly. I checked all the usual things, that is, it generates debugging symbols, configuration assembly during debugging is not an issue, and such things are shown in the settings of the Xcode project. Anything else I can skip? In Xcode 6.4, this was not a problem.

+4
source share
1 answer

This was a problem with the lack of the correct debugging information format specified in the hosting project. I decided by creating a dummy / test Xcode project and comparing the debug file format described in detail for each configuration with the fact that the project has a problem that changes the format of the debug information in accordance with the dummy / test project project.

+1
source

Source: https://habr.com/ru/post/1611112/


All Articles