gpt4 book ai didi

c++ - 尝试在 Visual Studio 中链接 libclang 时出现链接错误

转载 作者:行者123 更新时间:2023-11-28 02:18:45 26 4
gpt4 key购买 nike

我想做的是构建这个库: https://github.com/AustinBrunkhorst/CPP-Reflection一切顺利,直到我开始链接 libclang 发生这种情况:

1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_CXXMethod_isStatic
1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_getCursorType
1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_Cursor_getMangling
1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_getCXXAccessSpecifier
1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_Cursor_getStorageClass
1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_getCursorSpelling
1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_visitChildren
1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_getTypedefDeclUnderlyingType
1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_getCursorDisplayName
1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_CXXMethod_isConst
1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_isCursorDefinition
1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_getCursorLexicalParent
1>Cursor.obj : error LNK2001: unresolved external symbol __imp_clang_getCursorResultType
1>CursorType.obj : error LNK2001: unresolved external symbol __imp_clang_isConstQualifiedType
1>CursorType.obj : error LNK2001: unresolved external symbol __imp_clang_getNumArgTypes
1>CursorType.obj : error LNK2001: unresolved external symbol __imp_clang_getTypeDeclaration
1>CursorType.obj : error LNK2001: unresolved external symbol __imp_clang_getTypeSpelling
1>CursorType.obj : error LNK2001: unresolved external symbol __imp_clang_getArgType
1>CursorType.obj : error LNK2001: unresolved external symbol __imp_clang_getCanonicalType
1>MetaUtils.obj : error LNK2001: unresolved external symbol __imp_clang_disposeString
1>MetaUtils.obj : error LNK2001: unresolved external symbol __imp_clang_getCString
1>ReflectionParser.obj : error LNK2001: unresolved external symbol __imp_clang_getTranslationUnitCursor
1>ReflectionParser.obj : error LNK2001: unresolved external symbol __imp_clang_createTranslationUnitFromSourceFile
1>ReflectionParser.obj : error LNK2001: unresolved external symbol __imp_clang_createIndex
1>ReflectionParser.obj : error LNK2001: unresolved external symbol __imp_clang_disposeIndex
1>ReflectionParser.obj : error LNK2001: unresolved external symbol __imp_clang_disposeTranslationUnit

我正在构建 64 位版本,并且我也在 64 位/ Release模式下从源代码手动构建 llvm/clang。我不知道这是否重要(?),但我正在使用来自 github 的 clang 主分支。考虑到链接阶段之前一切都过去了,我认为,master 分支应该没问题。

我正在使用 Visual Stduio 2015。

在项目选项中,我添加了附加库目录以指向 clang 具有 *.lib 文件的位置。

最佳答案

除了在 Linker ->additional library directories 中指定它们的路径之外,您还需要在 属性对话框的 Linker->Input->Additional Dependencies 部分。

此外,再次检查您的 lib 文件的路径和版本是否正确(x86 与 x64)。

在没有 lib 文件的情况下,链接器无法将名称(符号)解析为其实现,因此出现unresolved symbol 链接器错误。

如果您有兴趣进一步了解,这里有一个很好的资源 - http://www.lurklurk.org/linkers/linkers.html

关于c++ - 尝试在 Visual Studio 中链接 libclang 时出现链接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33223819/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com