Re: [lldb-dev] Using LLDB C++ API for automated debugging sessions

2019-07-18 Thread Jayvee Neumann via lldb-dev
many purposes you will need to > have a cancellation mechanism as well, since people often want to "step > really quickly" and don't want to wait for fresh values of the local > variables to be fetched before the next step can start. > > Jim > > > > On Jul 18, 2

Re: [lldb-dev] Using LLDB C++ API for automated debugging sessions

2019-07-18 Thread Jayvee Neumann via lldb-dev
events and respond to events. > > Greg > > On Jun 26, 2019, at 4:58 AM, Jayvee Neumann via lldb-dev < > lldb-dev@lists.llvm.org> wrote: > > Dear LLDB developers, > > I am currently stuck while using the C++ API of LLDB. I am unable to > correctly launch a proc

[lldb-dev] Using LLDB C++ API for automated debugging sessions

2019-06-26 Thread Jayvee Neumann via lldb-dev
Dear LLDB developers, I am currently stuck while using the C++ API of LLDB. I am unable to correctly launch a process. The code I have written looks as follows: int main(int argc, char *argv[]){ LLDBSentry senty; SBDebugger dbg(SBDebugger::Create()); ... const char *exeFilePath = "./target"; cons