How to avoid error of stdio.h while using a clang checker on a file which includes stdio.h file

822 Views Asked by At

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.

1

There are 1 best solutions below

0
On

Answer found here: http://permalink.gmane.org/gmane.comp.compilers.clang.devel/37462

You mast use

clang --analyze -Xclang -analyzer-checker=alpha.core.FuncPrototype funcprototypetest.c

instead

clang -cc1 -analyze -analyzer-checker=alpha.core.FuncPrototype funcprototypetest.c