having trouble with eclipse

I made a simple hello world app in eclipse but when i try to build or debug it says.

"launch failed. binary not found."

The code
1
2
3
4
5
6
7
#include <iostream>

int main()
{
	std::cout << "Hello World!!\n";
	return 0;
}


its probably a noob mistake help please.
Have you installed a compiler?
no my friend just told me i need one but he doesn't know any
can you let me know of some good ones

thanks
You could try MinGW which you can get at http://www.mingw.org/. I'm not sure how to confidure your IDE to use MinGW though as I have no experience with Eclipse and very little with MinGW. I know it is a very solid compiler as it is simply a port of all the standard Linux tools such as GCC and G++, which are excellent.
MingW.
Once installed, you should go into the mingw's bin directory and copy mingw-make and make a copy of it called "make.exe". This will allow eclipse to work with no configuration :)
thanks ill try it as soon as i get home

iam at the site now what virsion do i use and whants the full file name please and thank you
Last edited on
Go to this site, the author of this website have an MINGW IDE that combined everything from editor, compiler, and most of the library installed. Just click and install. Very beautiful.

http://www.parinyasoft.com/download.html
thank you for leading the blind to water (8
Topic archived. No new replies allowed.