I’m a command line program called ios-deploy
to copy my app to my iPhone and start it. Problem is it crashes before I can set anything lldb.
ios-deploy -b build_ios/HelloWorldIOS/Hello.app -d
...
libc++abi: terminating
Process 36742 stopped
* thread #1, queue = 'com.apple.main-thread', stop reason = signal SIGABRT
frame #0: 0x00000001bbddabbc libsystem_kernel.dylib`__pthread_kill + 8
(lldb) break set -E c++
(lldb) break set -E objc
(lldb) run
error: a process is already being debugged
(lldb) kill
(lldb) run
error: the platform is not currently connected
How do I “connect” to the “platform”, and re-run with the breakpoints set?