所以我刚刚开始使用 Google 的 OpenFST 工具包,我正在尝试他们的示例。在 Eclipse Mars 上使用 C++ 并在构建时出现以下错误:
fatal error: 'type_traits' file not found
这是我的示例程序 - 当我从这里尝试时。
#include <iostream>
#include <fst/fst-decl.h>
#include <fst/fstlib.h>
using namespace std;
int main() {
fst::StdVectorFst fst;
return 0;
}
当我构建它时,我收到以下错误:
/usr/local/include/fst/util.h:15:10: fatal error: 'type_traits' file not found
#include <type_traits>
^
1 error generated.
make: *** [src/sampleFST.o] Error 1
是否有一些链接器错误?为什么找不到那个头文件?它确实存在于/usr/include/c++/4.2.1/tr1/
我计算机上的目录中。我究竟做错了什么?