> The thing is that those header files are not located in my > /include directory but in other directories. > > How can i instruct the compiler to look to specific directories > for those header files? gcc -I your/path/here ... The -I option is repeatable to add multiple paths. Fang