Search code examples
c++windowseclipseg++cygwin

make: g++: Command not found


I've checked similar posts and anyone solve my problem. I's very simple but I'm new with eclipse. I'm trying to make a simple example and I'm having this problem.

the make file is just this

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

And I get this error "make: g++: Command not found"

Thanks for helping.


Solution

  • You need to install the development tools from GNU. I assume you're on windows, in which case you have two options: cygwin and mingw. The former includes g++ out of the box. I'm less familiar with mingw, but the C++ Standard library appears to, also, be available.

    See these installation instructions, I'd recommend starting from step 1, if at all possible.