为啥 mingw bin 目录中的 c++fit 无法返回预期结果?
Posted
技术标签:
【中文标题】为啥 mingw bin 目录中的 c++fit 无法返回预期结果?【英文标题】:why c++fit in mingw bin's dir can't return expected result?为什么 mingw bin 目录中的 c++fit 无法返回预期结果? 【发布时间】:2014-01-20 02:50:24 【问题描述】:为什么 mingw bin 的目录中的 c++fit 不能返回正确的结果?
C:\MinGW\bin>c++filt _Z5funcAv
_Z5funcAv
但在 CentOS 系统中,c++filt 可以返回正确的结果。
#c++filt _Z5funcAv
funcA()
怎么理解?
【问题讨论】:
我有同样的问题没有解决方案:( @Buttink,好像没人能帮我们。 【参考方案1】:刚刚遇到您的问题,因为我遇到了与 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.
【讨论】:
以上是关于为啥 mingw bin 目录中的 c++fit 无法返回预期结果?的主要内容,如果未能解决你的问题,请参考以下文章
为啥这个 C 语言中的 SIMD 示例代码可以用 minGW 编译,但可执行文件不能在我的 Windows 机器上运行?