I have a little test program written in C that I am trying to compile
using gcc, Eclipse & Linux. Compile works fine, but then I took the big
step of adding an include file. Include file is in the same directory as
the C source file, which is the main project directory.
Compiler complains that it can't find the include file. Well, I've run
into that problem before, you have to tell gcc to also look in the current
directory. So I muck around in preferences and add . and ./ to the include
directory search path and still no luck. Still can't find the file.