Re: [lldb-dev] Catching async debugger output

2016-06-07 Thread Greg Clayton via lldb-dev
No there is no way as this is async output that isn't tagged to any specific command. My suggestion is to not use command line stop hooks and catch the stops in your python and do the stuff that you were doing with stop hooks by using the python API. Greg > On Jun 6, 2016, at 7:05 PM, Vadim

[lldb-dev] Catching async debugger output

2016-06-06 Thread Vadim Chugunov via lldb-dev
Hello, Is there a way for a python script to catch asynchronous debugger output, such as the output of stop hooks? I've tried attaching a listener to CommandInterpreter's broadcaster, but no events seem to be ever fired. Anything else I should try? thanks!