Replies: 1 comment 1 reply
-
From what you describe, it should work. I’m not sure why it doesn’t. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to debug a Qt project, and I want types like
QString
orQStringList
to use the qt's custom formatter. When I add the following to my.lldbinit
then thelldb
command line program loads the formatters automatically:And now in
lldb
command line when I do something like this:it is formatted correctly. I also have the following in my
launch.json
:But when I try to debug the application in vscode, the values are not using the qt's formatter and even if I do
p some_qstring
in vscode's debugger console, it is displayed as ifload-script-from-symbol-file
is false.Is there any way to tell codelldb to use the same formatters that the lldb command line program uses? thanks.
Beta Was this translation helpful? Give feedback.
All reactions