I need a command line mangler for gcc. C++filt will de-mangle
c++filt _ZN10NamespaceA7not_funEi
=> NamespaceA::not_fun( int )
But i need a mangler
mangler NamespaceA::not_fun( int )
=> _ZN10NamespaceA7not_funEi
How do I achieve this?
EDIT: So the answer is. A mangler does not exist. I have to build my own.