<div dir="ltr"><div><div><div><div><div>Hi All,<br><br></div>I am running lldb python API in Ubuntu 16.04 LTS. The debugger can launch any process inside python; and I always got the following SBProcess state:<br><br></div>SBProcess: pid = 0, state =launching, threads = 0, executable = test<br><br></div>I ran the same python code in MacOS X, the process get launched successfully. Do I need some special configuration on Ubuntu? I have attached python code below:<br><br>import lldb<br><br>debugger = lldb.SBDebugger.Create()<br>debugger.SetAsync(False)<br>target = debugger.CreateTargetWithFileAndArch ("test", lldb.LLDB_ARCH_DEFAULT)<br>target.BreakpointCreateByLocation("test.c", 12)<br>process = target.LaunchSimple (None, None, os.getcwd())<br>print process<br><br></div>Thanks,<br></div>Guolong <br></div>