Eclipse Kepler C / C ++ Build Error:没有这样的文件或目录

时间:2014-02-13 03:46:27

标签: c++ eclipse eclipse-kepler

遵循本教程:http://www.youtube.com/watch?v=77xZOT3xer4我将MinGW安装到已经运行的Eclipse Kepler IDE的计算机上。我从基本设置安装了MinGW和我需要的软件包,并安装了Eclipse CDT。当我创建一个新的C ++项目(HelloWorld项目)并构建它时,我在控制台中得到以下文本:

22:18:25 **** Incremental Build of configuration Debug for project cpp2 ****
Info: Internal Builder is used for build
g++ -O0 -g3 -Wall -c -fmessage-length=0 -o "src\\cpp2.o" "..\\src\\cpp2.cpp" 
g++: error: CreateProcess: No such file or directory

22:18:25 Build Finished (took 178ms)

我的代码:

#include <iostream>
using namespace std;

int main() {
    cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
    return 0;
}

Eclipse在代码中突出显示的特定错误是&#34;未解析的包含:&#34;和&#34; std;&#34;,&#34; cout&#34;和&#34; endl&#34; &#34;无法解决&#34;。

我一直在搜索几个小时,但找不到解决方案。我很欣赏任何东西。我认为这与编译器无法正常工作有关。也许它找不到cpp2.cpp?

0 个答案:

没有答案