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 var
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 n
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 the