why c++fit in mingw bin's dir can't return right result?
C:\MinGW\bin>c++filt _Z5funcAv
_Z5funcAv
but in CentOS system, the c++filt can return right result.
#c++filt _Z5funcAv
funcA()
how to understand it?
why c++fit in mingw bin's dir can't return right result?
C:\MinGW\bin>c++filt _Z5funcAv
_Z5funcAv
but in CentOS system, the c++filt can return right result.
#c++filt _Z5funcAv
funcA()
how to understand it?
Copyright © 2021 Jogjafile Inc.
Just came across your question, because I had a similar problem with MinGW32.
What did work for me was using the
-n
"Do not ignore a leading underscore" option, so I suspect a difference in the default option's settings: