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
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.
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