The solution that debugserver+lldb cannot connect

normal connection process

  1. iphone jailbroken device running
debugserver 127.0.0.1:10011 -a '你的应用名'
  1. mac terminal run
process connect connect://127.0.01:10011

If there is no accident, it can be connected normally,
but the accident is

process connect connect://127.0.01:10011

After executing this command, it has been stuck

Solution:
use iproxy
and then the process becomes:

  1. mac terminal run command
iproxy 10011 10011
  1. iphone jailbroken device running
debugserver 127.0.0.1:10011 -a '你的应用名'
  1. mac terminal (start another terminal) run
process connect connect://127.0.01:10011

OK~! The connection is normal

Guess you like

Origin blog.csdn.net/u010775335/article/details/127691013