How to include header files in GCC search path?
The -I
directive does the job:
gcc -Icore -Ianimator -Iimages -Ianother_dir -Iyet_another_dir my_file.c
Try gcc -c -I/home/me/development/skia sample.c
.
The -I
directive does the job:
gcc -Icore -Ianimator -Iimages -Ianother_dir -Iyet_another_dir my_file.c
Try gcc -c -I/home/me/development/skia sample.c
.