I recently started using Eclipse CDT for developing C++ applications. I downloaded the Eclpse Kepler CDT bundle, and it opened up properly, but when i created a simple hello world application I was getting an error"Binary Not Found", even after building the project.
Ill show you what my console display
19:54:11 **** Incremental Build of configuration Debug for project HelloWorld ****
make all
Building file: ../src/HelloWorld.cpp
Invoking: GCC C++ Compiler
g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/HelloWorld.d"-MT"src/HelloWorld.d" -o "src/HelloWorld.o" "../src/HelloWorld.cpp"
cc1plus: error: to generate dependencies you must specify either -M or -MM
make: *** [src/HelloWorld.o] Error 1
19:54:11 Build Finished (took 106ms)
I tried running the program with 2 toolchains Cross GCC and Linux GCC.
Could someone please tell me whats going wrong?

-MFand the-MTtags, but that does not appear to be the reason for your error. - Bart van Nierop-MMDshould be perfectly fine. I haven't used Eclipse for quite some time because I'm sadistic and prefer making my own Makefiles. However, to add a command-line option, you can go to Project -> Properties -> C/C++ Build -> Settings -> Tool Settings -> Compiler -> Miscellaneous and add-Mor-MMto Other flags. See this screenshot. - Bart van Nierop