0
我剛開始使用LLVM並試圖打印LLVM的基本命令,當我試圖執行 clang -cc1 ~/hello.c -ast-print
得到以下錯誤爲-ast打印命令鏘致命錯誤
致命錯誤:「stdio.h中」文件找不到
#include<stdio.h>
^
int main()
{
printf("hi\n");
return 0;
}
生成1個錯誤。
所以請幫助我。 謝謝!