I am trying to use .pch as illustrated in the following example at http://clang.llvm.org/doxygen/group__CINDEX.html but it doesnot seem to work.

char *args[] = { "-Xclang", "-include-pch=IndexTest.pch" };

TU = clang_createTranslationUnitFromSourceFile(Idx, "IndexTest.c", 2, args, 0, 0);

libclang fails to read -include-pch flag, it is reading it as -include flag.

What I want is the following: My code depends on lots of headers. I want to parse and create Translation unit once and save it as pch file. Now I just want parsing to happen to a single file in question. Is it possible to do?

link|improve this question
Did you ever solve this issue? I'm seeing the same thing. – Cory Kilger Jun 11 '11 at 7:20
feedback

2 Answers

I've encountered a similar problem, maybe the solution is also similar :

I'm using clang to compile some code internally, and a vector containing arguments to be sent to the compiler :

llvm::SmallVector<const char *, 128> Args;
Args.push_back("some");
Args.push_back("flags");
Args.push_back("and");
Args.push_back("options");
//...

Adding a line like "Args.push_back("-include-pch myfile.h.pch");" will lead to an error due to the fact that -include-pch flag is read as -include flag.

In this case, if you want to use a pch file, you have to use "two" arguments :

llvm::SmallVector<const char *, 128> Args;
//...
Args.push_back("-include-pch");
Args.push_back("myfile.h.pch");
//...
link|improve this answer
feedback

Use it like this:

char *args[] = { "-Xclang", "-include-pch", "IndexTest.pch" };

This will solve your problem. However, there is a bigger problem, when you want to use multiple pchs... It doesn't work, even with the clang++ compiler.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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