This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: user friendly symbol name


Thanks for reply . But how can I demangle the symbol name massively in
the output of disas command ? Many thanks !

2013/8/9 Jan Kratochvil <jan.kratochvil@redhat.com>:
> 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]