按照question和Andrew's提出的建议,我尝试按顺序添加 liblang 添加编译器系统包含路径(在Windows中)我的Python代码
import clang.cindex
def parse_decl(node):
reference_node = node.get_definition()
if node.kind.is_declaration():
print(node.kind, node.kind.name,
node.location.line, ',', node.location.column,
reference_node.displayname)
for ch in node.get_children():
parse_decl(ch)
# configure path
clang.cindex.Config.set_library_file('C:/Program Files (x86)/LLVM/bin/libclang.dll')
index = clang.cindex.Index.create()
trans_unit = index.parse(r'C:\path\to\sourcefile\test.cpp', args=['-std=c++11'])
parse_decl(trans_unit.cursor)
到完全 解析C ++源文件就像这个
/* test.cpp
*/
#include <iostream>
#include <vector>
#include <fstream>
#include <cmath>
#include <algorithm>
#include <iomanip>
using namespace std;
void readfunction(vector<double>& numbers, ifstream& myfile)
{
double number;
while (myfile >> number) {
numbers.push_back(number);}
}
double meanfunction(vector<double>& numbers)
{
double total=0;
vector<double>::const_iterator i;
for (i=numbers.begin(); i!=numbers.end(); ++i) {
total +=*i; }
return total/numbers.size();
}
现在,如果没有编译器系统包含适当的路径设置(使用Windows),我会得到以下输出:
CursorKind.USING_DIRECTIVE USING_DIRECTIVE 8 , 17 std
CursorKind.VAR_DECL VAR_DECL 10 , 6 readfunction
Process finished with exit code 0
<Diagnostic severity 4, location <SourceLocation file 'test.cpp', line 3, column 10>, spelling "'iostream' file not found">
不幸的是,我对这个approach或者如何在我的Python代码中实现这个solution没有意义(Python和Clang中的新内容)。
我也试过ccsyspath,但我没有能力为Windows调整它。
任何人都知道如何解决这个问题?
答案 0 :(得分:0)
在Windows中,要向路径添加内容,您必须执行以下操作:
希望这会有所帮助!
((如果我误解了您的问题,请告诉我,我仍然是堆栈溢出的新手。谢谢!)