将 CMake 与 LLVM 一起使用时出错

新手上路,请多包涵

所以我正在尝试使用 LLVM 构建一个玩具编译器,并且我想使用 CMake 作为我的构建系统。我尝试使用 LLVM 网站上的 示例 CMakeLists.txt ,但在运行 cmake 时遇到以下错误:

 CMake Error at /usr/share/llvm-3.8/cmake/LLVMConfig.cmake:178  (include):
  include could not find load file:

    /usr/share/llvm/cmake/LLVMExports.cmake
Call Stack (most recent call first):
  CMakeLists.txt:4 (find_package)

CMake Error at /usr/share/llvm-3.8/cmake/LLVMConfig.cmake:181 (include):
  include could not find load file:

    /usr/share/llvm/cmake/LLVM-Config.cmake
Call Stack (most recent call first):
  CMakeLists.txt:4 (find_package)

当我去调查问题时,我发现我系统上的路径实际上是 /usr/share/llvm-3.8/ 。当我尝试像预期的那样将路径更改为 /usr/share/llvm/ 时,我收到另一个错误:

 CMake Error at /usr/share/llvm/cmake/LLVMExports.cmake:1034 (message):
  The imported target "LLVMSupport" references the file

     "/usr/lib/libLLVMSupport.a"

  but this file does not exist.  Possible reasons include:

  * The file was deleted, renamed, or moved to another location.

  * An install or uninstall procedure did not complete successfully.

  * The installation package was faulty and contained

     "/usr/share/llvm/cmake/LLVMExports.cmake"

  but not all the files it references.

我并不是 CMake 究竟如何工作的专家,所以我不确定从这里去哪里。我正在运行 Ubuntu 16.04,我尝试通过各种不同的软件包安装 LLVM,结果相同。这是 Ubuntu 打包系统的问题,还是我可以解决的问题?

原文由 AUD_FOR_IUV 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1k
1 个回答

AFAIK,这是 Ubuntu 包装中的一个众所周知的错误。 Ubuntu 16.04 上的 llvm-3.8-dev 中仍然存在原始问题,请参见 此处此处

尝试通过手动设置导入前缀来修复 LLVMExports.cmake

 set(_IMPORT_PREFIX "/usr/lib/llvm-3.8")

CMake 能够找到 libLLVMSupport.a 和其他库。但是,我遇到了以下问题

 The imported target "PollyISL" references the file

    "/usr/lib/llvm-3.8/lib/libPollyISL.a"

 but this file does not exist.  Possible reasons include:

令人惊讶的是,库 libPollyISL.a 甚至不存在于 LLVM 安装目录中。因此,问题不仅仅是 CMake 配置。

为了节省时间,请自己从源代码构建 LLVM 并设置 LLVM_DIR 环境变量。请参阅本 教程

原文由 Codoka 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏