gecko-dev/build/build-clang
2017-01-05 00:51:47 -05:00
..
build-clang.py Bug 1328184 follow-up: Fix a typo 2017-01-05 00:51:47 -05:00
clang-static-analysis-linux64.json Bug 1273981 part 1: Add libc++ to clang. r=glandium 2016-08-05 10:46:38 -03:00
clang-static-analysis-macosx64.json Bug 1262781 - Update to clang 3.8 final. r=froydnj 2016-04-13 06:54:22 +09:00
clang-static-analysis-win32.json Bug 1321334 - bump clang-cl build version to r286542; r=dmajor 2016-11-30 12:06:20 -05:00
clang-static-analysis-win64.json Bug 1321334 - bump clang-cl build version to r286542; r=dmajor 2016-11-30 12:06:20 -05:00
clang-tidy-linux64.json Bug 1324488 - Add a TaskCluster job to build clang-tidy on Linux; r=dustin 2017-01-04 16:50:08 -05:00
clang-tidy-macosx64.json Bug 1328199 - Part 2: Add a TaskCluster job to build clang-tidy for OSX on Linux; r=dustin 2017-01-04 16:50:09 -05:00
clang-tidy-win32.json Bug 1328200 - Add TaskCluster jobs to build clang-tidy for Win32 and Win64; r=dustin 2017-01-03 17:04:29 -05:00
clang-tidy-win64.json Bug 1328200 - Add TaskCluster jobs to build clang-tidy for Win32 and Win64; r=dustin 2017-01-03 17:04:29 -05:00
disable-mac-tsan.patch Bug 1262781 - Update to clang 3.8 final. r=froydnj 2016-04-13 06:54:22 +09:00
llvm-debug-frame.patch
query-selector-visibility.patch Bug 1262735 - Change the clang paths in patches added in bug 1210154. r=ehsan 2016-04-13 06:54:22 +09:00
README Bug 1328199 - Part 1: Add support for cross-compiling clang for OS X on Linux; r=mystor 2017-01-04 16:50:08 -05:00
return-empty-string-non-mangled.patch Bug 1262781 - Update to clang 3.8 final. r=froydnj 2016-04-13 06:54:22 +09:00

build-clang.py
==============

A script to build clang from source.

```
usage: build-clang.py [-h] -c CONFIG [--clean]

optional arguments:
  -h, --help            show this help message and exit
  -c CONFIG, --config CONFIG
                        Clang configuration file
  --clean               Clean the build directory
```

Pre-requisites
--------------
* Working build toolchain.
* Subversion
* CMake
* Ninja
* Python 2.7

Please use the latest available CMake for your platform to avoid surprises.

Config file format
------------------

build-clang.py accepts a JSON config format with the following fields:

* llvm_revision: The LLVM SVN revision to build.
* stages: Use 1, 2, or 3 to select different compiler stages.  The default is 3.
* llvm_repo: SVN path to the LLVM repo.
* clang_repo: SVN path to the Clang repo.
* compiler_repo: SVN path to the compiler-rt repo.
* libcxx_repo: SVN path to the libcxx repo.
* libcxxabi_repo: SVN path to the libcxxabi repo.
* python_path: Path to the Python 2.7 installation on the machine building clang.
* gcc_dir: Path to the gcc toolchain installation, only required on Linux.
* cc: Path to the bootsraping C Compiler.
* cxx: Path to the bootsraping C++ Compiler.
* ar: Path to the library archiver tool.
* ranlib: Path to the ranlib tool.
* ld: Path to the linker.
* patches: Optional list of patches to apply per platform.  Supported platforms: macosx64, linux32, linux64.  The default is Release.
* build_type: The type of build to make.  Supported types: Release, Debug, RelWithDebInfo or MinSizeRel.
* build_libcxx: Whether to build with libcxx.  The default is false.
* import_clang_tidy: Whether to import Mozilla checks into clang-tidy before building.  The default is false.
* osx_cross_compile: Whether to invoke CMake for OS X cross compile builds.
* assertions: Whether to enable LLVM assertions.  The default is false.

Environment Variables
---------------------

The following environment variables are used for cross-compile builds targeting OS X on Linux.

* CROSS_CCTOOLS_PATH: Path to the cctools directory where the cross compiler toolchain is located.
* CROSS_SYSROOT: Path to the OS X SDK directory for cross compile builds.
* LIBCXX_INCLUDE_PATH: Path to the cross compiler libc++ headers.