where to find how g++ mangles names when compiling?
where can i find informations who the g++ compiler mangle names?
e.g. i see when i have a function with two int the symbol always have the ending "ii" but is t开发者_Go百科his always so? i need to get some documentation
G++ uses the IA64 C++ ABI mangling specification.
https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangling
精彩评论