Search code examples
c++name-manglingname-decoration

C++ name mangling decoder for g++?


is there any C++ name-mangling decoder for g++?


Solution

  • You can use c++filt to demangle c++ symbols. For instance

    $ c++filt -n _Z1fv
    f()