teoREtik
teoREtik

Reputation: 7916

Problems with Eclipse cdt plugin

I have pre-installed Eclipse Gallileo for Java Developers on my PC and recently downloaded cdt plugin for it, using eclipse's Install Wizard.

My problem is that firstly when I was trying to build C/C++ project, IDE didn't find mingw32-make.exe. After I changed C/C++ project properties in C++ Build, renaming command to build project, it became to work well. But then when I try to Run project I get "Launch failed. Binary not found" message.

What did I miss in Eclipse congiguration?

Upvotes: 1

Views: 377

Answers (1)

dashesy
dashesy

Reputation: 2645

You should add "c:\MinGW\bin" to the Windows path and restart Eclipse. In windows7 you can right click on "My Computer" hit properties , in "Advanced system settings" then in "Environment variables" then in "System variables" section add ";c:\MinGW\bin" notice the semicolon. In Windows XP the "Advanced system settings" is not needed.

Upvotes: 1

Related Questions