How to install the C library on MinGW?
How can I install the C library in MinGW?
I always get some error like when I want to run some scripts:
Cannot find <clang-c/I开发者_如何学运维ndex.h>
Please ensure libClang is installed
How do I fix this problem?
That library is available from the LLVM project. clang is a "a C language family frontend for LLVM." I don't believe they make binary releases yet. So, you would need to check out the code using Subversion (SVN), and then build the library yourself under minGW. Please refer to the "Getting Started: Building and Running Clang" page for detailed instructions.
精彩评论