blob: b8cd5f6c5f7852c431d8ffd3039b965956d7a43a [file] [log] [blame]
Adam Langley95c29f32014-06-20 12:00:00 -07001cmake --version # ensure that you have >= 2.8.8
2
3mkdir build
4cd build
5cmake ..
6make
7
8If you see an error about "Cannot find source file: OBJECT" then your version of CMake is too old.
9
10Note that the default build flags in the top-leve CMakeLists.txt are for
11debugging - optimisation isn't enabled.
12
13If you'll be building a lot, then installing Ninja[1] is highly recommended.
14Wipe out the build directory and recreate it, but using:
15
16cmake -GNinja ..
17ninja
18
19If you want to cross-compile then there are example toolchain files for 32-bit
20Intel and ARM in util/. Wipe out the build directory, recreate it and run cmake
21like this:
22
23cmake -DCMAKE_TOOLCHAIN_FILE=../util/arm-toolchain.cmake -GNinja ..
24
25[1] http://martine.github.io/ninja/