Windows 7 X64平台编译LLVM+clang
1 源碼包
去LLVM官方網站下載最新的源碼,Windows平臺下載三個即可(2019.04.24版本為LLVM 8.0.0):
- LLVM source code?(.sig)
- Clang source code?(.sig)
- compiler-rt source code?(.sig)
2 解壓源碼
(1)解壓 llvm-8.0.0.src.tar.xz 到磁盤目錄,例如 D:\Software\llvm-8.0.0\llvm-8.0.0.src
(2)解壓 cfe-8.0.0.src.tar.xz 到本地并重命名為clang,放置到?llvm-8.0.0.src\tools目錄下,例如?D:\Software\llvm-8.0.0\llvm-8.0.0.build\tools\clang
(3)解壓?compiler-rt-8.0.0.src.tar.xz 到本地并重命名為 compiler-rt,放置到?llvm-8.0.0.src\projects目錄下,例如?D:\Software\llvm-8.0.0\llvm-8.0.0.src\projects\compiler-rt
(4)在 llvm-8.0.0.src 平級新建一個build目錄用于CMAKE編譯中間結果,例如 D:\Software\llvm-8.0.0\llvm-8.0.0.build
(5)打開 CMAKE GUI 來創建Visual Studio 工程,如下圖:
3 啟動Visual studio編譯
在上文描述的build目錄(D:\Software\llvm-8.0.0\llvm-8.0.0.build)中打開CMAKE生成的VS工程,啟動編譯。編譯時間特別長,我現在已經編譯兩個小時了才顯示一半的進度。。。
2019.04.25 昨晚上我騰出來12GB的磁盤空間用VisualStudio去編譯LLVM,編譯到70%的樣子磁盤被消耗的一干二凈。算了不編了,直接去Ubuntu上用現成的。
?
轉載于:https://www.cnblogs.com/kuliuheng/p/10764637.html
總結
以上是生活随笔為你收集整理的Windows 7 X64平台编译LLVM+clang的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Confluence 6 针对 'unm
- 下一篇: Django 应用程序 + 模型 + 基