在使用Make工具编译LLVM是很是耗时的。每每须要三四个小时。可是使用goolge开源的ninja编译LLVM只须要10到20分钟。html

本文以llvm3.3为例,演示在linux上编译和安装过程。java

第一步 安装ninja和cmake

1 获取并编译安装 ninjalinux

$ git clone git://github.com/martine/ninja.git

$ cd ninja

$ ./bootstrap.py

$ sudo cp ninja /usr/local/bin/

Q: warning: A compatible version of re2c (>= 0.11.3) was not found;git

changes to src/*.in.cc will not affect your build.github

A: re2c 是一个用于编写快速灵活的词法分析器的工具.json

$sudo apt-get install re2cbootstrap

2 安装 cmake(至少须要 2.8.9):

用sudo apt-get install cmake获得的是 2.8.7–2013.3.7

可从http://www.cmake.org/cmake/resources/software.html获 取 最 新 的

cmake, 再编译.

编译 cmake 须要 QT4 和 java:

Q:Could NOT find Qt4 (missing: ...

A:sudo apt-get install qt-sdk

Q:fatal error: ext2fs/ext2 fs.h: No such file or directory

A: sudo apt-get install e2fslibs-dev

Q:fatal error: curses.h: No such file or directory

A: sudo apt-get install libncurses5-devbash

第二步下载源代码

llvm全部的项目的代码的svn库都在:

http://llvm.org/svn/llvm-project/

能够使用svn拷贝

1 下载llvm3.3$ svn co http://llvm.org/svn/llvm-project/llvm/branches/release_33/ llvm3.3

2 下载clang3.3到llvk3.3/tools$ cd llvm3.3/tools/

$ svn co http://llvm.org/svn/llvm-project/cfe/branches/release_33/ clangsvn

3 下载Compiler RT到llvm3.3/projects$ cd ../projects

$ svn co http://llvm.org/svn/llvm-project/compiler-rt/branches/release_33/ compiler-rt工具

第三步 编译和安装

1 创建build目录$ cd llvm3.3/

$ mkdir build

2 产生ninja编译文件#能够使用-DCMAKE_INSTALL_PREFIX指定安装目录

$ cmake -G Ninja -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_INSTALL_PREFIX=/opt/llvm3.3 ..

$ ln -s ../build/compile_commands.json ..

3 编译

$ ninja

4 安装

$ sudo ninja install

5 把安装目录加入的环境变量PATH中

能够在home目录的.bashrc中加入

export PATH=/opt/llvm3.3/bin/:$PATH

GitHub 加速计划 / ni / ninja
10.88 K
1.57 K
下载
a small build system with a focus on speed
最近提交(Master分支:2 个月前 )
dcefb838 Fix typo: Explaantions -> Explanations 4 个月前
2f19d3a0 - 5 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐