Launched failed. Binary not found c++ eclipse

314 views Asked by At

I have no idea why my c++ file will not compile correctly. I added the MinGW installer in the right environment path. I selected my Binary parser to PE Windows Parser. enter image description hereenter image description here

1

There are 1 answers

4
bremen_matt On

Open a command prompt from any folder and type make. Press enter. If it gives you a message like file not found, then you either do not have make on the path, or it was not installed with Mingw.

So if not found, first go to the Mingw folder and verify that you have a file called make.exe. If you don't, you need to reinstall (possibly with msys), if you do, then you need to make sure that the exact folder with make is on your path.

You can see what folders are on your path by running echo %PATH% in a command prompt.