【发布时间】:2012-09-16 10:52:42
【问题描述】:
当我尝试编译以下代码时,我的 Eclipse CDT 一直在抱怨“make: *** no rule to make target all”:
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!!!" << endl; // prints Hello World!!!
return 0;
}
有人知道如何解决这个问题吗? 我已经阅读了类似标题的帖子: make: *** No rule to make target `all'. Stop. Eclipse error 但是这些答案都没有帮助......
非常感谢!
【问题讨论】:
-
我只是从它的网站下载 CDT 包,什么也不做。实际上,这个问题甚至在我编辑我的 test.cpp 之前就存在
-
你为项目选择什么工具链?
标签: c++ eclipse eclipse-cdt