The main textbook? Makefiles in Eclipse CDT

Does anyone know where a good tutorial exists for creating an Eclipse CDT C project? I saw a couple in C ++, but none of them describes what I need to know as an absolute beginner of the plugin and C programming in general:

  • When I create a project, nothing happens. Why?
  • When I add “do goals” by right-clicking and adding the file name and output file name, it will compile these files, but there are undefined help errors (and before you tell me, YES I looked at those many SO questions and many other sites, but I did not find solutions that solve the problem in the context of CDT). Why are linker errors occur and what do I need to do to make make just compile my code as I would like (for example, "gcc -Wall source1.c source2.c -o client") in the correct order so as not to generate linker errors ?

Any help would be greatly appreciated. I feel that the Eclipse CDT is a kind of mysterious Pandora box, which, when I open it, unleashes the chaos in my programming universe due to the obvious lack of direct beginners. Thank you in advance for any direction you could give.

+5
source share
1 answer

This may help you:

www.cs.umanitoba.ca/~eclipse/7-EclipseCDT.pdf

0
source

All Articles