README.txt
1CMake Caches
2============
3
4This directory contains CMake cache scripts that pre-populate the CMakeCache in
5a build directory with commonly used settings.
6
7The first two cache files in the directory are used by Apple to build the clang
8distribution packaged with Xcode. You can use the caches with the following
9CMake invocation:
10
11cmake -G <build system>
12 -C <path to llvm>/tools/clang/cmake/caches/Apple-stage1.cmake
13 -DCMAKE_BUILD_TYPE=Release
14 [-DCMAKE_INSTALL_PREFIX=<install path>]
15 <path to llvm>
16
17Building the `bootstrap` target from this generation will build clang, and
18`bootstrap-install` will install it.
19