Search code examples
c++demangler

Is there an online name demangler for C++?


I'm getting a fairly long and confusing link error, and would love it if I could just paste it into some textbox on some website and have the names un-mangled for me.

Does anyone know of such a service?


Solution

  • I have created such an online serivice: https://demangler.com

    This is a gcc c++ symbol demangler. You just copy a stack trace, or the output of nm into a text box, and it will return the output with the names demangled.

    @Update: It now demangles MSVC and Java symbols also.