私は新しい C++11 の「列挙型クラス」型を使用しましたが、g++ を使用すると「未定義の参照」の問題が発生しました。この問題は、clang++ では発生しません。私が何か間違ったことをしているのか、それとも g++ のバグなのかわかりません。
問題を再現するコードは次のとおりです: (4 つのファイル: enum.hpp、enum.cpp、main.cpp、および Makefile)
// file: enum.hpp
enum class MyEnum {
val_1,
val_2
};
template<typename T>
struct Foo
{
static const MyEnum value = MyEnum::val_1;
};
template<>
struct Foo<int>
{
static const MyEnum value = MyEnum::val_2;
};
template<typename T>
void foo(const T&);
と...
// file: enum.cpp
#include <iostream>
#include "enum.hpp"
template<typename T>
void foo(const T&)
{
switch(Foo<T>::value) {
case MyEnum::val_1:
std::cout << "\n enum is val_1"; break;
case MyEnum::val_2:
std::cout << "\n enum is val_2"; break;
default:
std::cout << "\n unknown enum"; break;
}
}
// Here we force instantation, thus everything should be OK!?!
//
template void foo<int>(const int&);
template void foo<double>(const double&);
と...
// file: main.cpp
#include "enum.hpp"
int
main()
{
foo(2.);
foo(2);
}
そしてメイクファイル...
COMPILER = g++ # does no work
#COMPILER = clang++ # Ok
all: main
main : main.cpp enum.cpp
$(COMPILER) -std=c++11 -c enum.cpp -o enum.o
$(COMPILER) -std=c++11 main.cpp enum.o -o main
g++ を使用していると、次のようになります。
make -k
g++ -std=c++11 -c enum.cpp -o enum.o
g++ -std=c++11 main.cpp enum.o -o main
enum.o: In function `void foo<int>(int const&)':
enum.cpp:(.text._Z3fooIiEvRKT_[_Z3fooIiEvRKT_]+0xe): undefined reference to `Foo<int>::value'
enum.o: In function `void foo<double>(double const&)':
enum.cpp:(.text._Z3fooIdEvRKT_[_Z3fooIdEvRKT_]+0xe): undefined reference to `Foo<double>::value'
collect2: error: ld returned 1 exit status
make: *** [main] Error 1
make: Target `all' not remade because of errors.
しかし、clang++ ではすべて問題ありません (コンパイル エラーはありません)。
私はここで迷っているので、どんな説明でも大歓迎です。
ありがとう!:)
私の設定について:
g++ --version
g++ (Debian 4.7.2-5) 4.7.2
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
clang++ --version
Debian clang version 3.0-6 (tags/RELEASE_30/final) (based on LLVM 3.0)
Target: x86_64-pc-linux-gnu
Thread model: posix
uname -a
Linux IS006139 3.2.0-4-amd64 #1 SMP Debian 3.2.35-2 x86_64 GNU/Linux