为什么 mingw bin 的目录中的 c++fit 不能返回正确的结果?
C:\MinGW\bin>c++filt _Z5funcAv
_Z5funcAv
但在 CentOS 系统中,c++filt 可以返回正确的结果。
#c++filt _Z5funcAv
funcA()
怎么理解?
刚刚遇到您的问题,因为我对MinGW32有类似的问题。
对我有用的是使用-n
“不要忽略前导下划线”选项,所以我怀疑默认选项的设置有所不同:
C:\MinGW\bin>c++filt -n _Z5funcAv
funcA()
C:\MinGW\bin>c++filt _Z5funcAv
_Z5funcAv
C:\MinGW\bin>c++filt __Z5funcAv
funcA()
C:\MinGW\bin>c++filt --version
GNU c++filt (GNU Binutils) 2.25.1
Copyright (C) 2014 Free Software Foundation, Inc.
This program is free software; you may redistribute it under the terms of
the GNU General Public License version 3 or (at your option) any later version.
This program has absolutely no warranty.