gecko-dev/build/build-clang
Dorel Luca 3b805a479e Backed out changeset 5d60b68a0a42 (bug 1494216) for xpcshell failures in memory/replace/dmd/test/test_dmd.js. CLOSED TREE 2018-09-28 06:35:55 +03:00
..
README
aarch64-vastart-checking.patch Bug 1494384 - fix aarch64 __va_start checking in clang; r=dmajor 2018-09-27 10:50:28 -04:00
build-clang.py Backed out changeset 5d60b68a0a42 (bug 1494216) for xpcshell failures in memory/replace/dmd/test/test_dmd.js. CLOSED TREE 2018-09-28 06:35:55 +03:00
clang-3.9-linux64.json Backout changeset b0abf5269c25 (bug 1492037) to give time to toolchains to build without blocking other landings. 2018-09-19 07:01:33 +09:00
clang-6-linux64.json Bug 1492037 - Build clang with LLVM as a shared library. r=froydnj 2018-09-21 10:41:36 +09:00
clang-6-macosx64.json Bug 1492037 - Build clang with LLVM as a shared library. r=froydnj 2018-09-21 10:41:36 +09:00
clang-7-linux64.json Bug 1492037 - Build clang with LLVM as a shared library. r=froydnj 2018-09-21 10:41:36 +09:00
clang-7-mingw.json Bug 1491788 - Use clang 7final to build firefox & clang-tidy r=glandium 2018-09-20 10:10:29 +09:00
clang-tidy-linux64.json Bug 1491788 - Use clang 7final to build firefox & clang-tidy r=glandium 2018-09-20 10:10:29 +09:00
clang-tidy-macosx64.json Bug 1491788 - Use clang 7final to build firefox & clang-tidy r=glandium 2018-09-20 10:10:29 +09:00
clang-tidy-win32.json Bug 1493142 - Use 7 final tag to build libcxx r=dmajor 2018-09-21 13:58:30 +00:00
clang-tidy-win64.json Bug 1493142 - Use 7 final tag to build libcxx r=dmajor 2018-09-21 13:58:30 +00:00
clang-win32-st-an.json Bug 1494384 - fix aarch64 __va_start checking in clang; r=dmajor 2018-09-27 10:50:28 -04:00
clang-win64-st-an.json Bug 1494384 - fix aarch64 __va_start checking in clang; r=dmajor 2018-09-27 10:50:28 -04:00
clang-win64.json Bug 1494384 - fix aarch64 __va_start checking in clang; r=dmajor 2018-09-27 10:50:28 -04:00
compiler-rt-cross-compile.patch
compiler-rt-no-codesign.patch
fflush-before-unlocking.patch
find_symbolizer_linux.patch
llvm-debug-frame.patch
loosen-msvc-detection.patch
msvc-host-x64.patch
r277806.patch
r285657.patch
r289565-for-3.9.patch
r313872.patch
r318309.patch
r320462.patch
r322325.patch
r322401.patch
r325356.patch
r327876.patch
r339636.patch
r342649-hotpatch-8-byte-nops.patch Bug 1477490: Merge upstream ASan patch to unpoison thread stacks. r=ted 2018-09-20 17:40:38 -04:00
r342652-unpoison-thread-stacks.patch Bug 1477490: Merge upstream ASan patch to unpoison thread stacks. r=ted 2018-09-20 17:40:38 -04:00
r343123-pin-asan-dll.patch Bug 1492508: Merge upstream patch to pin the ASan DLL. r=ted 2018-09-26 17:24:16 -04:00
rename_gcov_flush.patch
static-llvm-symbolizer.patch Bug 1492037 - Build clang with LLVM as a shared library. r=froydnj 2018-09-21 10:41:36 +09:00
workaround-issue38586.patch

README

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.
* extra_repo: SVN path to the clang-tools-extra repo.
* lld_repo: SVN path to the lld 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.
* as: Path to the assembler tool.
* ar: Path to the library archiver tool.
* ranlib: Path to the ranlib tool (optional).
* libtool: Path to the libtool tool (optional).
* ld: Path to the linker.
* patches: Optional list of patches to apply.
* 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.
* build_clang_tidy: Whether to build clang-tidy with the Mozilla checks imported.  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.