I am trying to do some research on iOS, and this has to do with attaching lldb to the process. I can do this with the lldb console, however, when I try to convert it to a python script, it gets stuck in the "continuation process" for the first time and never reaches the commands at the end. Can anyone help? Thank!
import lldb
debugger = lldb.SBDebugger.Create()
debugger.SetAsync(False)
debugger.HandleCommand('platform select remote-ios')
debugger.HandleCommand('process connect connect://localhost:1234')
debugger.HandleCommand('process continue')
source
share