I managed to compile successfully clang for windows with cmake and visual studio 10. That was really a childplay so far. I would like to get an XML file as AST representation of the source code. There is one option that provides the result with clang with gcc under linux (ubuntu) but doesn't work on the windows box:
clang -cc1 -ast-print-xml source.c
However this is invoking the compilation stage (which I would like to avoid). Digging in the source code didn't help me so far as I am quite new to clang. I could manage to generate the binary version of the AST by using:
clang -emit-ast source.c
But this format is unusable directly for parsing. Is there some existing patch to directly generate the XML tree instead of a binary one in clang? or is some conversion tool from binary AST to its XML representation available?
The goal is to use the XML representation in other tools in the .NET environment so I would need to make some wrapping around the native clang lib to access the binary AST. Maybe there is a third option if someone already wrote some binary clang AST parser for .NET?
Please correct me also if I am missing something like if the AST generated by the clang front end is maybe not equivalent to the one generated in the compilation stage.
Thanks in advance.