Hi folks!
I use a parser generator here, that unfortunately insists on putting a
#include <some/file.h>
at the top of every generated source file. The header has since long been renamed. While it is no problem forcing the compiler (gcc) to use the new header with -include new/header.h
, removing the above directive from every generated file complicates the build-process.
Is there a way to tell gcc to simply ignore some/file.h
?