How to skip a couple of lines code with lldb?
问题 Is there a way to skip over lines of code while debugging with lldb without having to recompile? 回答1: UPDATE In addition to the original answer below, the jump / j aliases can be used for skipping a number of lines or skipping to a specific line number: To skip two lines ahead: (lldb) jump +2 To skip to line 102: (lldb) jump 102 See help jump for more info. ORIGINAL This can be achieved using the thread jump command by giving the --by / -b flag. Example: (lldb) thread jump --by 2 (lldb) th j