I'm running eclipse on SUSE with gcc compiler installed.
When I create new "Hello World" C++ project, clean and build and run I'm faced with "Launch Failed: Binary Not Found".
I try to set a run configuration only to find no binary has been created, no binary folder has been created in project.
Only message from build is :
**** Build of configuration Debug for project HelloWorld ****
(Cannot run program "make": Unkown reason)
Binary Parser is set to Elf.
Tried everything on SO with no success. Only thing I can think of is binary file is being created elsewhere....but no idea where it could be.
Help much appreciated.
makeis not found. Do you have it installed? - Sami Kuhmonenmake. Does make run? If not check if it's installed withzypper in make. This will install make if it is missing. After that rerunmake. If make runs, try to build with Eclipse again . - user4581301