【发布时间】:2016-09-16 17:24:22
【问题描述】:
所以我试图构建一个 C++ 项目,但是我得到了这个错误
**** Build of configuration Release for project p ****
**** Internal Builder is used for build ****
Nothing to build for p
我在网上搜索解决方案,但他们没有解决问题
- 我的文件都是小写的
- 我的文件已正确包含在项目中,实际上这些文件是从 File -> new -> c++ project -> hello world project 生成的,因此它们是由 eclipse 创建的...
而且代码就是 eclipse hello world 的代码...
#include <iostream>
using namespace std;
int main() {
cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
return 0;
}
- 编译器安装正确...我在 C:\mingw 上找到了 mingw,项目的包含文件夹正确包含所有这些文件...
有谁知道可能出了什么问题?
【问题讨论】:
标签: c++ eclipse eclipse-cdt