我检查了类似的帖子,任何人都解决了我的问题。我很简单,但我是eclipse的新手。我想做一个简单的例子,我遇到了这个问题。
make文件只是这个
all: hello.exe
clean:
rm Hello.o Hello.exe
hello.exe: hello.o
g++ -g -o hello.exe hello.o
hello.o:
g++ -c -g main.cpp
我收到此错误“make:g ++:Command not found”
感谢您的帮助。
答案 0 :(得分:7)
您需要从GNU安装开发工具。我假设您在Windows上,在这种情况下,您有两个选项:cygwin和mingw。前includes g++开箱即用。我对mingw不熟悉,但C++ Standard library似乎也可以使用。
请参阅these installation instructions,我建议从步骤1开始,如果可能的话。