ianlancetaylor / demangle

C++ symbol name demangler written in Go
BSD 3-Clause "New" or "Revised" License
166 stars 24 forks source link

support for the other compiler? #1

Closed minux closed 9 years ago

minux commented 9 years ago

do you intend for this package to also support the other C++ compiler out there?

There isn't much documentation on its ABI, and the only open source demangler I could find is in wine, but it's not complete and doesn't support C++11. clang has almost complete support for name mangling for that ABI, but there isn't a demangler.

Thanks.

ianlancetaylor commented 9 years ago

I don't intend to write code to demangle symbols for any other compilers. That's not something I find interesting.

I'd be willing to look at patches if somebody would find that to be useful.