[lldb-dev] How to load symfile when using debugger.CreateTarget?

2020-01-25 Thread Yong Lam via lldb-dev
Hi all, I can specify myapp.dsym in the lldb command line app: target create --no-dependents -arch arm64 --symfile myapp.dsym myapp But how can I specify dsym file when using python API? ``` target = debugger.CreateTarget( "myapp", triple, platform_name, add_dependents, lldb.SBError(

[lldb-dev] gdb-remote protocol questions

2020-01-25 Thread Alexander Zhang via lldb-dev
Hi, I've been implementing a basic RSP protocol server for remotely debugging a MIPS simulator, and have been having some trouble getting certain lldb features to work there, in particular backtraces (bt) and instruction step over (ni). Does someone know what packets these commands rely on to work