[lldb-dev] July LLVM bay-area social will be on *the second* Thursday of July

2019-06-26 Thread George Burgess IV via lldb-dev
Hey all, Just a heads-up: since the first Thursday of July is the 4th, which is a U.S. holiday, the next monthly bay-area social is scheduled for July 11th. In August, we'll resume our regular "first Thursday of every month" schedule. Thanks, and for those who celebrate it, have a happy 4th! Geo

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

2019-06-26 Thread Jim Ingham via lldb-dev
By default, the SB API's run in "asynchronous" mode, where calls that cause the target to run (launch, continue, etc) return when the target has started running, and then you have to wait on the listener that you registered with the process when you launched it to get notified of state changes.

[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