I just started using llvm and trying to use some basic commands of llvm, when i tried to execute clang -cc1 ~/hello.c -ast-print, i'm
getting the error :
‘fatal error: ‘stdio.h’ file not found’
#include<stdio.h>
^
int main()
{
printf("hi\n");
return 0;
}
1 error generated.
so please help me out. Thanks!