⼀,Windows下通过CMAKE搭建LLVM环境
Windows 下通过 CMAKE 搭建 LLVM 环境
英文音标本⽂主要介绍如何在 Windows 下通过 vscode 使⽤ Cmake+Ninja 来编译 LLVM 源码,从⽽搭建 LLVM 环境以及⽣成 clang 的 Tools 相关库。
前因
1. 为啥要编译源码,预编译包它不⾹么?
1. 确实 LLVM 官⽅已经提供了 Win32 版本的预编译包,但是我尝试安装了9.0.1版本与10.0.0版本,它居然都没有 clang 的
libTooling 相关的库,这就很难受了所以为了能使⽤ clang Tools 只好从头做起,如果哪位同学知道为啥不提供 libtooling 这些库的原因请告诉下,谢谢~ 。
2. 为啥⾮得在 Windows 下,Linux 不是更⽅便?
1. 我在 Linux 下也搭建了⼀下 9.0.1 版本,直接在 LLVM 官⽹上下载对应版本与系统的预编译包,解压及⽤、库⼜全⼜好⽤
。
2. 但是由于我使⽤的 Ubuntu WSL ⼦系统,通过 Vscode 的 WSL 插件连接上后发现对 c++ 插件⽀持貌似有问题,代码颜⾊渲
染信息不全,不清楚是 GCC 编译器问题还是啥原因,导致强迫症患者不想在 WSL 系统直接开发,知道原因的⼤佬求告知,反正当前的项⽬是通过 CMake 管理,所以决定在 windows 下开发完成后在移植到 Linux 下。
3. 废话就说这么多现在开始。
我是分割线
系统环境
1. Win10 操作系统,已经安装了 VS2017 全家桶。包括最最重要的 msvc2017_64 ⼯具包、Vscode、以及 camke(version
3.12.18081601-MSVC_2) ⼯具。当然如果你不想装那么巨⼤的 IDE,也可以单独安装 mingw + cmake ⽹上的教程也很多。
2. 环境变量正确配置,例如在 powershell 或 cmd 中敲 -version 可以打印出安装的⼯具版本,确保你的编译器相关⼯具也
可以正常⼯作。
Let’s Begin
获取 LLVM Project 源码
查找了⼀些⽹上的资料发现下载源码超级⿇烦,要么是需要安装 svn 、要么去官⽹下载,并且需要下载这个源码然后在下那个源码,⼀眼看过去就迷失在了未知的海洋⾥嘞。因此在这⾥推荐直接下载 llvm-project 源码合集⼤礼包,可以避免很多问题。
1. 如果你是在担忧源码编译出来过⼤以及多余你不需要的模块,那么不⽤担⼼,llvm 的贴⼼的准备了裁剪编译命令,帮助你只构建需要
的模块。
1. 考虑到当时我下载时艰⾟的⽹速,,提取码:u0sf。
teachers day2. 此时你已经拿到了源码包,开开⼼⼼的右键 -> 解压到当前⽂件夹 -> 等待 -> … -> 错误:⽆法创建⽂件。 What
1. 我遇到的问题主要是由于压缩包中包含软连接,当前 Windows 下⽂件系统不⽀持创建,导致错误。最终我是直接通过 WSL ⼦
系统,使⽤命令 tar 解压的。所以如果在 Windows 下解压失败的话可以尝试在 Linux 中解压然后在拷贝出来。
使⽤ Vscode 打开&编译 LLVM Project
在打开之前,需要介绍⼀个很重要的⼯具,它就是 CmakeTools,作为 Vscode 的插件,在管理使⽤ cmake 构建的⼯程⾮常好⽤,可以⽅便的配置使⽤的编译器、编译模式、使⽤GDB、控制⽣成模块。因此如果你不想耗费精⼒去管理⼯程或者输⼊编译命令,那么我强烈建议你安装⼀个。
aaa英语
1. 安装好 CmakeTools ⼯具后,通过 vscode 打开 llvm-project 的源码⽂件夹。如果你的环境变量正确,编译器、cmake ⼯具能正确
搜索到,那么 CmakeTools 会⾃动使⽤ cmake ⼯具配置当前项⽬,但是由于 llvm-project 的源码根⽬录中并没有
<,因此 CmakeTools ⼯具会提⽰⼀个错误。
lionheart1. 解决的办法就在根⽬录中的 README.md 中,可以看到⼏个步骤,其中 mkdir build 的步骤其实 CmakeTools 默认就会在当
前⽂件夹根⽬录创建 build ⽤于保存编译中间⽂件因此略过。主要看到其中 cmake 命令对应的 …/llvm ⽬录,可知作为⼊⼝的 就在 llvm ⽬录中。
2. 因此配置 cmaketools 的根⽬录为 llvm ⽬录。
2. 这时你的 CmakeTools 应该就可以正确的⼯作了。以下就是我当前环境中的 CmakeTools 在配置 时的输出信息,
惊喜用英语怎么说可以看到最终是配置成功的。
[variant] 已加载⼀组新变量
[kit] 已成功从 C:\Urs\Administrator\AppData\Local\CMakeTools\cmake-tools-kits.json 加载 14 ⼯具包
[main] 正在配置⽂件夹: llvm-project-10.0.0
[cmake] clang project is enabled
[cmake] clang-tools-extra project is enabled
[cmake] compiler-rt project is disabled
[cmake] debuginfo-tests project is disabled
[cmake] libc project is disabled
[cmake] libclc project is disabled
[cmake] libcxx project is disabled
[cmake] libcxxabi project is disabled
[cmake] libunwind project is disabled
[cmake] lld project is disabled
[cmake] lldb project is disabled
[cmake] llgo project is disabled
[cmake] mlir project is disabled
[cmake] openmp project is disabled
[cmake] parallel-libs project is disabled
[cmake] polly project is disabled
[cmake] pstl project is disabled
iata[cmake] Could NOT find Z3: Found unsuitable version "0.0.0", but required is at least "4.7.1" (found Z3_LIBRARIES-NOTFOUND)
[cmake] Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR)
[cmake] Native target architecture is X86
[cmake] Threads enabled.
[cmake] Doxygen disabled.
[cmake] Go bindings disabled.
[cmake] Ninja version: 1.8.2
[cmake] Could NOT find OCaml (missing: OCAMLFIND OCAML_VERSION OCAML_STDLIB_PATH)
[cmake] OCaml bindings disabled.
[cmake] LLVM host triple: x86_64-pc-windows-msvc
[cmake] LLVM default target triple: x86_64-pc-windows-msvc
[cmake] Using Relea VC++ CRT: MD
[cmake] Constructing LLVMBuild project information
[cmake] LLVMHello ignored -- Loadable modules not supported on this platform.
[cmake] Targeting AArch64
[cmake] Targeting AMDGPU
[cmake] Targeting ARM
[cmake] Targeting BPF
[cmake] Targeting Hexagonin heaven
[cmake] Targeting Lanai
[cmake] Targeting Mips
james cameron
[cmake] Targeting MSP430
[cmake] Targeting NVPTX
[cmake] Targeting PowerPC
[cmake] Targeting RISCV
[cmake] Targeting Sparc
[cmake] Targeting SystemZ
[cmake] Targeting WebAsmbly
[cmake] Targeting X86
[cmake] Targeting XCore
[cmake] Clang version: 10.0.0
[cmake] PrintFunctionNames ignored -- Loadable modules not supported on this platform.
[cmake] AnnotateFunctions ignored -- Loadable modules not supported on this platform.
[cmake] BugpointPass ignored -- Loadable modules not supported on this platform.
[cmake] Bye ignored -- Loadable modules not supported on this platform.
[cmake] TestPlugin ignored -- Loadable modules not supported on this platform.
[cmake] -- Version: 0.0.0
[cmake] -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile
[cmake] -- Performing Test HAVE_POSIX_REGEX -- failed to compile
[cmake] CMake Warning at utils/:244 (message):
[cmake] CMake Warning at utils/:244 (message):
[cmake] Using std::regex with exceptions disabled is not fully supported
signlanguage[cmake]
[cmake]
[cmake] -- Performing Test HAVE_STEADY_CLOCK -- success
[cmake] Configuring done
[cmake] Generating done
mustbe3. 这⾥如果想要编译其他模块例如 [cmake] clang project is enabled,还需要在 CmakeTools 配置的时候传⼊⼀些参数,如图。参数的含
义可以看根⽬录中 README.md 中有详细的解释。这⾥有个问题就是像我配置的第⼀项 compiler-rt 其实依旧是 disabled 的,怀疑是LLVM 的 解析有 BUG 或者我哪⾥配置的还是不对,请了解的⼤佬告知。
1. 这⾥有⼀点需要注意,CMakeTools 默认也是编译 Debug 模式,但是这对电脑内存要求较⾼,耗时同样很长,因此我这⾥配置
参数编译的是 Relea 版本。
4. 最终当这⼀切配置完成,点击 CmakeTools 中的 ⽣成 按钮,就可以开始编译了。
Build
最终编译完成后,会在根⽬录的 build ⽂件夹中⽣成许多⽂件,其中 lib 就包括所有⽣成的库⽂件。
注意 LLVM 中有⼀些头⽂件时在编译过程中针对平台⽣成,也在 build ⽬录中,当使⽤库时发现头⽂件找不到的情况,可以去 build 中搜索下查找。
⾄此,LLVM 就成功编译完成,接下来就可以开⼼的搞事情了。