gecko-dev/build/build-clang
Andi-Bogdan Postelnicu 714748cf50 Bug 1430360 - Update the clang svn revision for the clang-tidy build generated by toolchains. r=froydnj
MozReview-Commit-ID: JiHF24Du8By

--HG--
extra : rebase_source : dfd667d30b1e8e0904ffe403afb2689a8f14ebb3
2018-01-19 11:52:54 +02:00
..
build-clang.py Bug 1429015 - Add clang-format-diff to the clang-tidy build generated by toolchains. r=sylvestre 2018-01-09 13:27:39 +02:00
clang-3.9-linux64.json Bug 1431314 - Update clang 3.9 and 5.0 toolchains. r=froydnj 2018-01-23 13:48:05 +09:00
clang-4-linux64.json
clang-5-linux64.json Bug 1431314 - Update clang 3.9 and 5.0 toolchains. r=froydnj 2018-01-23 13:48:05 +09:00
clang-6-pre-linux64.json
clang-macosx64.json Bug 1431314 - Update clang 3.9 and 5.0 toolchains. r=froydnj 2018-01-23 13:48:05 +09:00
clang-tidy-linux64.json Bug 1430360 - Update the clang svn revision for the clang-tidy build generated by toolchains. r=froydnj 2018-01-19 11:52:54 +02:00
clang-tidy-macosx64.json Bug 1430360 - Update the clang svn revision for the clang-tidy build generated by toolchains. r=froydnj 2018-01-19 11:52:54 +02:00
clang-tidy-win32.json Bug 1430360 - Update the clang svn revision for the clang-tidy build generated by toolchains. r=froydnj 2018-01-19 11:52:54 +02:00
clang-tidy-win64.json Bug 1430360 - Update the clang svn revision for the clang-tidy build generated by toolchains. r=froydnj 2018-01-19 11:52:54 +02:00
clang-win32.json Bug 1425984 - Backport LLVM revision 318309 to fix clang-cl bustage with VS2017 15.5. r=dmajor 2017-12-19 14:16:31 -05:00
clang-win64.json Bug 1425984 - Backport LLVM revision 318309 to fix clang-cl bustage with VS2017 15.5. r=dmajor 2017-12-19 14:16:31 -05:00
compiler-rt-cross-compile.patch
compiler-rt-no-codesign.patch Bug 1430360 - Update the clang svn revision for the clang-tidy build generated by toolchains. r=froydnj 2018-01-19 11:52:54 +02:00
fflush-before-unlocking.patch
find_symbolizer_linux.patch
hide-gcda-profiling-symbols.patch
llvm-debug-frame-for-5.patch
llvm-debug-frame.patch
loosen-msvc-detection.patch
msvc-host-x64.patch
pr28831-r280042.patch
pr_set_ptracer.patch
r277806.patch
r285657.patch
r289565-for-3.9.patch Bug 1410148 - Backport llvm r289565 to clang 3.9. r=gps 2017-12-28 14:54:51 +09:00
r313872.patch Bug 1410148 - Backport llvm r289565 to clang 3.9. r=gps 2017-12-28 14:54:51 +09:00
r318309.patch Bug 1425984 - Backport LLVM revision 318309 to fix clang-cl bustage with VS2017 15.5. r=dmajor 2017-12-19 14:16:31 -05:00
README
return-empty-string-non-mangled.patch

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.