It would be great to have my lldb debugger run under xcode - it works fine for user-space applications, but what about Kext.
in userspace, if you may use the debugger in one of the following scenarios:
- start new process from your project.
- wait for process with specific name to come up.
- connect to an existing process (according to IP).
All of these options doesn't require lldb command line to initiate and therefore may be easily triggered from xcode configuration charts.
However, in kernel extension debugging, it's an whole different story, since one must trigger kdp <remote ip> in order to connect the machine under debug. is it optional to do so from xcode ?
Alternatively, I'd like to hear about other gui wrappers for lldb that are capable for this task.
thanks