[lldb-dev] multiple NameErrors on lldb startup, doesn't seem to affect lldb performance

2018-06-15 Thread Peter Rowat via lldb-dev
Here is what happens: prowat% lldb modTS (lldb) target create "modTS" Traceback (most recent call last): File "", line 1, in File "/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python/lldb/__init__.py", line 98, in import six ImportError: No module named

[lldb-dev] Unsubscribe “pro...@ucsd.edu”

2018-07-30 Thread Peter Rowat via lldb-dev
Thank you ___ lldb-dev mailing list lldb-dev@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev

[lldb-dev] How to debug a child process ?

2019-09-30 Thread Peter Rowat via lldb-dev
I have a process P1 that forks a child process P2. Both have graphic displays, P2 is an animation depending on data from P1. P2 suddenly disappears at a time that is never the same as any previous run. I use lldb to run P1 and when P2 disappears P1 hangs, and lldb prints a message like "2019-09-

[lldb-dev] printf works under lldb but not otherwise

2019-10-07 Thread Peter Rowat via lldb-dev
I have a simple C program that has printf statements. It produces zero output. However when it’s run under lldb, it prints correct output. How could this be? I tried replacing the printf statements by “fprintf” to a file: same behaviour - no file created and no output, but under lldb, the file