Using Visual Studio 2010/2012, one can compile a c++ source file with the /FAs
switch to generate the assembly output of the resulting code. But the generated asm file contains all symbols in their mangled form.
Is there a switch or other smart way to make Visual Studio generate unmangled symbols instead? I know that one could manually feed the asm file through undname.exe
but a switch would be much more convenient than a custom post-build event.