我在Ubuntu 14.04上安装了Eclipse Mars。当我尝试创建一个空项目和简单程序时,我得到错误"Symbol std could not be resovled"
,而cout
也是如此。但是当我运行Eclipse中包含的Hello world项目时,一切正常。可能是什么问题?
Current toolchain : Linux GCC
Current builder : GNU make builder
GCC Archiver
GCC C++ Compiler
GCC C Compiler
GCC C Linker
GCC C++ Linker
GCC Assembler
示例代码:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello";
return 0;
}