Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我检查了类似的帖子,有人解决了我的问题。我很简单,但我是 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 ++:找不到命令”
感谢您的帮助。
您需要从 GNU 安装开发工具。我假设你在 Windows 上,在这种情况下你有两个选择:cygwin和mingw。前者包括开箱即用的g++ 。我对 mingw 不太熟悉,但C++ 标准库似乎也可用。
请参阅这些安装说明,如果可能的话,我建议从第 1 步开始。