I'm trying to compile code on aix using g++
since xlC support of c++11 is very limited.
I'm having trouble to link my code with aix shared libraries because of the different name mangling.
xlC supports name mangling replacement (-qnamemangling=v13), but IBM doesn't gave the sources, so I need to recompile using g++ (or xlclang++) with xlC name mangling.
xlC version is V16.1
Is it possible to replace the name mangling of g++ (or xlclang++) to match xlC?
Is there other alternative?