Skip to content
Advertisement

“Python Exception There is no member named _M_dataplus.” when trying to print string

I’m trying to debug a segfault in a homework program and I’ve discovered that my GDB can no longer even print std::strings. How can I fix it?

I’m on Ubuntu 18.04 LTS.

CLang++ version:

JavaScript

GDB version:

JavaScript

I’ve writen a small test program called gdbbroke.cpp:

JavaScript
JavaScript

I expected print test to output:

JavaScript

However it just throws the Python error above.

Advertisement

Answer

With Clang, to print the string you need debug symbols of libstdc++ to be installed. See this Clang bug resolved as INVALID https://bugs.llvm.org/show_bug.cgi?id=24202.

The string should be printed if you install libstdc++ debug symbols. On the other hand you can simply use GCC instead of Clang. In that case you don’t need to install libstdc++ debug symbols because GCC already emits them. Clang does not emit them because it does debug information optimization while GCC does not do it. See also related question Cannot view std::string when compiled with clang.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement