我正在将我的代码移植到 xlC。
想知道 xlC 是否支持 forward_list?
我试过测试程序
#include <forward_list>
#include <iostream>
int main()
{
std::forward_list<int> fl;
std::cout<<"Hello";
return 0;
}
它在 g++ 上编译良好,但在 xlC 上给出错误。
尝试以下编译行:
xlC forward_list_test.cpp
xlC -D __IBMCPP_TR1__ forward_list_test.cpp
但错误相同:
“forward_list_test.cpp”,第 1.10 行:1540-0836 (S) 找不到#include 文件。
如果它支持我们是否需要添加一些额外的东西来编译它?
注意:使用 xlC 11