Aaron de Windt
Aaron de Windt

Reputation: 17708

How do I need to configure Eclipse to create a C++ program?

I installed Eclipse for C/C++ Developers. After installing it I also installed PyDev.

I managed to create a C++ project (The Hello World project that comes with it). But I cannot compile/run it.

When I created the project there was nothing in the toolchain list. So I think I will need to install a toolchain. But I cannot find anything. I need someone to help me with this please.

I am using 64 bit Windows 7.

Upvotes: 2

Views: 1735

Answers (3)

Bud Alverson
Bud Alverson

Reputation: 5

Try installing TDM-GCC from http://tdm-gcc.tdragon.net/ . This should have you up and going with a compatible GCC setup under Windows in a snap.

Upvotes: 0

ascanio
ascanio

Reputation: 1526

You need to install not only Eclipse CDT, but also a C/C++ compiler for Windows, like minGW.

Upvotes: 0

Vinicius Kamakura
Vinicius Kamakura

Reputation: 7778

No compiler, no executable.

Check MinGW

This is one of the first results i got in google for eclipse and mingw:

http://max.berger.name/howto/cdt/cdt.jsp

Upvotes: 3

Related Questions