3

我正在尝试使用 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 实现:

  • 视觉工作室
  • 明文
  • libCXX

在每种情况下,我都得到了未知类型。

例如,使用 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'

我发现的关于这个主题的罕见教程没有谈论这个主题......

4

1 回答 1

2

由于 libclang 是预编译的,它不知道编译器使用的标准库的确切路径。-I在调用clang_parseTranslationUnit.

这是我用来查找gccLinux 上包含路径的命令。您应该能够在您的 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.
...
于 2014-03-20T14:29:33.587 回答