以下代码编译产生如下错误:
Compiling: main.cpp
...cc1wtYYU.s: Assembler messages:
...cc1wtYYU.s:76: Error: symbol `__Z1gIXadL_Z1fvEEEvv' is already defined
代码:
void f()
{
}
typedef void(*F)();
template<F _F>
void g()
{
_F();
}
int main()
{
void f();
g<f>();
{
void f();
g<f>();
}
return 0;
}
如果不是模板实例化, g<f>()改为f()就OK.
如果去除一个void f()声明, 也会OK.
如果两个实例化在同一代码层次, 即去除那个大括号, 也OK.
就是g<f>模板实例化重复了, 好像是将两个f()声明当作了两个不同的函数.
gcc版本:
C:\Documents and Settings\jinqing>mingw32-g++.exe -v
Using built-in specs.
COLLECT_GCC=mingw32-g++.exe
COLLECT_LTO_WRAPPER=d:/mingw/bin/../libexec/gcc/mingw32/4.5.0/lto-wrapp
Target: mingw32
Configured with: ../gcc-4.5.0/configure --enable-languages=c,c++,ada,fo
c,obj-c++ --disable-sjlj-exceptions --with-dwarf2 --enable-shared --ena
mp --disable-win32-registry --enable-libstdcxx-debug --enable-version-s
untime-libs --disable-werror --build=mingw32 --prefix=/mingw
Thread model: win32
gcc version 4.5.0 (GCC)
但VC可以通过。
可以确认为gcc的错误.
不过一查, 多年早有人发现并提出了该错误, 只是到现在还没有修复.
Bug 20357 - Multiply defined assembler symbols for template instantiations
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20357