How to make lldb ignore EXC_BAD_ACCESS exception?
问题 I am writing a program on Mac OSX depending on the sigaction/sa_handler mechanism. Run a code snippet from user and get ready to catch signals/exceptions at any time. The program works fine, but the problem is I can't debug it with lldb. lldb seems not being able to ignore any exceptions even I set proc hand -p true -s false SIGSEGV proc hand -p true -s false SIGBUS The control flow stops at the instruction that triggers the exception and does not jump to the sa_handler I installed earlier