I have implemented a checker in clang. I have compiled it and now i am using it to check on a c file which includes stdio.h file. I am giving below command to run the checker : clang -cc1 -analyze -analyzer-checker=alpha.core.FuncPrototype funcprototypetest.c
I am getting below error : funcprototypetest.c:1:10: fatal error: 'stdio.h' file not found
#include <stdio.h>
^
Can anybody help me with a proper way to handle this error.When i compile the funcprototype.c file independently with gcc, it gets compiled. So i am not getting what can be the issue?
Thanks in advance.
Answer found here: http://permalink.gmane.org/gmane.comp.compilers.clang.devel/37462
You mast use
instead