Program compiled with homebrew's clang don't have pretty printing support in lldb #1102
Unanswered
smit-onshape
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to use the latest Clang compiler, so I installed it from Homebrew (apple's clang is old) and I have the following code:
When I compile this code with Homebrew's Clang using CMake like this:
and break at the end of the program, it does not pretty print the
map
andmap2
variables; it shows<error: invalid value object>
as element values.If I compile it with Apple's Clang, it properly pretty prints the maps.
I tried changing the program's linked
libc++
to homebrew'slibc++
like thisbut that didn't worked :(
Beta Was this translation helpful? Give feedback.
All reactions