Re: [lldb-dev] Status of prettyprint via MI

2016-02-07 Thread Zachary Turner via lldb-dev
I can think of two problems with this scenario. First, it depends what implementation of STL you're using. If you're using clang-cl or MSVC to compile your program, then you're getting the MSVC STL, and we don't have any data formatters implemented for those yet. It will happen eventually, but

[lldb-dev] Status of prettyprint via MI

2016-02-07 Thread Red Skotina via lldb-dev
How i can use prettyprint for STL structures via MI (lldb-mi)? Have it is difference from gdb ? It is implemented? I use lldb at windows and want use lldb-mi like gdb via MI inside IDE Codelite with pretty printing of stl structures. I can now do basic debug with lldb-mi, but when try examine

[lldb-dev] Why is storing SBTarget in a private field causing random crash?

2016-02-07 Thread Jeffrey Tan via lldb-dev
Hi, I have been spending long time troubleshooting a race condition in our lldb python test. I finally narrowed down to one code change that caused the race: basically, whenever I store SBTarget in DebuggerTestCase's self.target field lldb will randomly crash during destruction(see below). In