Re: user friendly symbol name

Jan Kratochvil <[email protected]>
Newsgroups gmane.comp.gdb.devel
Message-ID <[email protected]>
On Fri, 09 Aug 2013 03:17:16 +0200, Shang Yu wrote:
> How to display a user friendly symbol name in gdb ? For example , I
> want gdb display the following symbol name _ZNSt14basic_iostreamIwSt
> in its C++ equivalent format.

Besides the other reply - in GDB you can:

(gdb) set cp-abi gnu-v3
(gdb) set language c++
(gdb) maintenance demangle _ZNSt14basic_iostreamIwSt
Can't demangle "_ZNSt14basic_iostreamIwSt"
(gdb) maintenance demangle _ZNSt16nested_exceptionD2Ev
std::nested_exception::~nested_exception()

You may want to check the documentation why your symbol is not recognized:
	http://mentorembedded.github.io/cxx-abi/abi.html#mangling


Jan
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.