Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following code in a sample file:

#include "SkCanvas.h"
#include "SkDevice.h"
#include "SkGLCanvas.h"
#include "SkGraphics.h"
#include "SkImageEncoder.h"
#include "SkPaint.h"
#include "SkPicture.h"
#include "SkStream.h"
#include "SkWindow.h"

However, this code is located in various folders within /home/me/development/skia (which includes core/ animator/ images/ ports/ svg/ and a lot more.)

How can I make GCC recognize this path?

share|improve this question

2 Answers

up vote 12 down vote accepted

Try gcc -c -I/home/me/development/skia sample.c. See here.

share|improve this answer
Glad to see this answer here. Another point worth mentioning would be that when you have many ".c" source files, it's necessary to specify each and every one of them in the commandline itself. You can't just do something like a -I to specify that all source files are in a certain directory. – Nav Sep 6 '11 at 6:20

The -I directive does the job:

gcc -Icore -Ianimator -Iimages -Ianother_dir -Iyet_another_dir my_file.c
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.