I have a project that uses gcc -include file.h
As the gcc documentation says, this ensures that the .h file is included in every file that has been compiled this way (which means that any other files had #include "file.h").
Now I have imported this project into eclipse, and I have configured the include path where this file is located, but I canβt figure out how to do something like gcc -include in setting up the eclipse project. The result of this is that in the editor I have LOT "Symbol xy cannot be resolved", but the project compiles just fine.
Thanks for any help.
source share