Hi ,
I'm trying to use elclipse as an IDE to write my college code .
I've downalod the version
eclipse-cpp-europa-winter-win32
from the website ...

the problem is ,
when I create a project ( c++ project )

#include <iostream>

using namespace std;

int main()
{
	cout << "Hello World!" << endl;
	return 0;
}

( ther is a warning show up )

Error launching external scanner info generator (gcc -E -P -v -dD C:/workspace/.metadata/.plugins/org.eclipse.cdt.make.core/specs.cpp)

and when I bulied up the project and try to run it ..
the attched error is shown .

the version and platform info. is attaced .
we have to work using eclipse :(
so I need your help to fix that issue ..

Thanks ,

Recommended Answers

All 4 Replies

If you open a command prompt (cmd.exe) and type in e.g.
gcc --version
what happens?

This what I've got :

C:\>gcc --version
'gcc' is not recognized as an internal or external command,
operable program or batch file.

what I have to do now ?

Install gcc.

It could also be a PATH issue. gcc.exe may exist somewhere but Windows can't find it. Do a file search through the computer (probably in "Program Files" somewhere) for the file gcc.exe and see if it's in some directory somewhere. It could be somewhere on your computer, but in the wrong place, or in the right place, but the installer didn't adjust the PATH correctly. If you find gcc.exe in a file search in some directory, try adding that directory to the PATH and retrying what mitrmkar suggested. When in doubt, uninstall everything and reinstall.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.