Is it possible to turn off debug mode for a specific .m file ?
Summary. I am writting a framework which will be used in other projects, code contains @try @catch blocks, which handles some exceptions.
Problem. If framework user turns on Xcode's "All exceptions" breakpoints, then LLDB periodically stops program (when exception is raised) in @try block.
What I want. I want to mark my framework files "non sensitive" for lldb (ignore exception breakpoints).
Solutions that I have already tried. I tryed python script which checks eax/r0 and ignores exception, also a variant with breakpoint condition, but all this solutions are not nice for thousand of newbie third party developers.
Is it possible to have some nice solution?
Thanks.