Xcode 8.1 Breakpoints not triggered

I have 2 different iOS projects that use the same source code. One project works fine, the other does not trigger breakpoints set in the editor. Both projects work fine on my teamates workstations.


When I use the editor to set a breakpoint then in lldb do a break list -v it shows the breakpoint as a 1 line element. file = /private/var/tmp ... line = 45, exact_match = 0 If I use that path or a full path to the original source file it does the same thing and the breakpoint is never triggered. however if I set a breakpoint with: break set --file MyFileNAme.m --line 35 the display is as shown below:


: file = 'SearchHistory.m', line = 40, exact_match = 0

9.1:

module = /Users/username/appname/build/Debug-iphoneos/MyApp.app/My App

compile unit = SearchHistory.m

function = -[SearchHistory addSearchTerm:]

location = /Users/username/projectname/Search/SearchHistory.m:40

address = 0x00000001000f3fc0

resolved = true

hit count = 2


It correctly stops on these breakpoints, the variables are visible and all is well. This begam happening a couple of weeks ago and has been an ongoing issue since then.

Xcode 8.1 Breakpoints not triggered
 
 
Q