For example
callq 401400 <_ZNSaIcEC1Ev@plt>
I want to know the name of this function
My compiler is g++
For example
callq 401400 <_ZNSaIcEC1Ev@plt>
I want to know the name of this function
My compiler is g++
You can use the c++filt
tool that should be included with your compiler. Example:
$ echo 'callq 401400 <_ZNSaIcEC1Ev@plt>' | c++filt
callq 401400 <std::allocator<char>::allocator()@plt>