我试图使用libclang解析一个库,我仍然坚持一个非常简单的问题:如何用STL配置它?
目前,它无法解析翻译单元,因为它无法找到<string>
。
这是我尝试的内容:
char *args[] = {"-x", "c++", "-Ic:/my/library/includes", "-IG:/Prog/libcxx-3.4/include"};
clang_parseTranslationUnit(index, "c:/my/library/test.cpp", args, 4, 0, 0, 0);
我在Windows上,从llvm.org下载了预编译的clang二进制文件,我尝试了各种STL实现:
在每种情况下,我最终都得到了未知类型。
例如,有了mingw,我收到了以下错误消息:
/mingw/include\wchar.h:221:71: error: unknown type name '_locale_t'
/mingw/include\wchar.h:223:81: error: unknown type name '_locale_t'
/mingw/include\stdlib.h:173:65: error: unknown type name '_locale_t'
/mingw/include\stdlib.h:175:75: error: unknown type name '_locale_t'
/mingw/include\io.h:301:14: error: unknown type name 'off64_t'
/mingw/include\io.h:301:36: error: C++ requires a type specifier for all declarations
/mingw/include\io.h:302:14: error: unknown type name 'off64_t'
/mingw/include\io.h:302:39: error: unknown type name 'off64_t'
/mingw/include\unistd.h:65:20: error: unknown type name 'off_t'
我发现的关于这个主题的罕见教程没有谈论这个主题...
答案 0 :(得分:1)
由于libclang是预编译的,因此它不知道编译器使用的标准库的确切路径。在调用-I
时,您必须告诉它有关使用参数列表中clang_parseTranslationUnit
个开关的标准包含路径。
这是我用来查找Linux上gcc
的包含路径的命令。您应该能够在Windows环境中将其调整为MinGW:
$ echo "" | g++ -v -x c++ -E -
...
#include "..." search starts here:
#include <...> search starts here:
/usr/include/c++/4.8
/usr/include/x86_64-linux-gnu/c++/4.8
/usr/include/c++/4.8/backward
/usr/lib/gcc/x86_64-linux-gnu/4.8/include
/usr/local/include
/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
...