Title: Missing header files in AST display
I can currently successfully compile and link C and C++ code on my Windows 10 system but I would also like to be able to separately generate the AST for each file. The command line below does display much of the AST but it contains errors regarding miss
Do you mean the default include paths? Not sure how the Windows
version is handling this, but if a normal clang compilation works for
you, then this should make the ast-dump working with all include
default paths:
clang -Xclang -ast-dump -fsyntax-only -I/your/usual/extra/paths test.c
Note that th