gecko-dev/build/build-clang
Noemi Erli fdd5552b6b Backed out changeset eaddabaa522f (bug 1915571) for causing toolchains bustage CLOSED TREE 2024-09-04 10:19:27 +03:00
..
2stages.json
D146664.patch
README
Remove-FlushViewOfFile-when-unmaping-gcda-files.patch
allow-unversioned-android.patch
android-mangling-error_clang_12.patch
arm64e-hack.patch
build-clang.py Backed out changeset eaddabaa522f (bug 1915571) for causing toolchains bustage CLOSED TREE 2024-09-04 10:19:27 +03:00
clang-8-missing-header.patch
clang-8.0.json
clang-14.json
clang-17.json
clang-18.json Backed out changeset eaddabaa522f (bug 1915571) for causing toolchains bustage CLOSED TREE 2024-09-04 10:19:27 +03:00
clang-tidy-ci.patch
clang-tidy-external.json Bug 1915778 - Clean up the clang toolchain json configs. r=firefox-build-system-reviewers,sergesanspaille 2024-09-04 05:43:03 +00:00
clang-tidy.json Bug 1915778 - Clean up the clang toolchain json configs. r=firefox-build-system-reviewers,sergesanspaille 2024-09-04 05:43:03 +00:00
clang-trunk.json
compiler-rt-rss-limit-heap-profile.patch
downgrade-mangling-error_clang_12.patch
find_symbolizer_linux_clang_10.patch
find_symbolizer_linux_clang_15.patch
fuzzing_ccov_build_clang_12.patch
llvm-config.json
llvm-symbolizer-17.json
llvm-symbolizer-18.json
llvm-symbolizer-trunk.json
llvmorg-10-init-136-gb288d90b39f4.patch
llvmorg-15-init-16512-g4b1e3d193706.patch
llvmorg-18-init-8471-g160e8eb44961.patch
llvmorg-19-init-7654-gc23135c5488f.patch
macosx64-aarch64.json
macosx64.json Bug 1915778 - Clean up the clang toolchain json configs. r=firefox-build-system-reviewers,sergesanspaille 2024-09-04 05:43:03 +00:00
partial-revert-llvmorg-15-init-11205-gcead4eceb01b.patch
partial-revert-llvmorg-15-init-11205-gcead4eceb01b_clang_18.patch
profile.json Backed out changeset eaddabaa522f (bug 1915571) for causing toolchains bustage CLOSED TREE 2024-09-04 10:19:27 +03:00
revert-llvmorg-15-init-13446-g7524fe962e47.patch
revert-llvmorg-16-init-11301-g163bb6d64e5f_clang_17.patch
revert-llvmorg-16-init-11301-g163bb6d64e5f_clang_18.patch
revert-llvmorg-16-init-11301-g163bb6d64e5f_clang_19.patch
revert-llvmorg-18-init-5259-g5d7f84ee17f3.patch
revert-llvmorg-18-init-15724-gf11b056c02cc.patch
stage-1.json Bug 1915778 - Clean up the clang toolchain json configs. r=firefox-build-system-reviewers,sergesanspaille 2024-09-04 05:43:03 +00:00
stage-4-pgo.json Bug 1915778 - Clean up the clang toolchain json configs. r=firefox-build-system-reviewers,sergesanspaille 2024-09-04 05:43:03 +00:00
unpoison-thread-stacks_clang_10.patch
use-clang-artifact.json Bug 1915778 - Clean up the clang toolchain json configs. r=firefox-build-system-reviewers,sergesanspaille 2024-09-04 05:43:03 +00:00
use-clang-cl-artifact.json Bug 1915778 - Clean up the clang toolchain json configs. r=firefox-build-system-reviewers,sergesanspaille 2024-09-04 05:43:03 +00:00
use-system-clang.json Bug 1915778 - Clean up the clang toolchain json configs. r=firefox-build-system-reviewers,sergesanspaille 2024-09-04 05:43:03 +00:00
win64-aarch64.json
win64-ret-null-on-commitment-limit_clang_14.patch
win64.json Bug 1915778 - Clean up the clang toolchain json configs. r=firefox-build-system-reviewers,sergesanspaille 2024-09-04 05:43:03 +00:00

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.
* git
* CMake
* Ninja
* Python 2.7 and 3

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:

* stages: Use 1, 2, 3 or 4 to select different compiler stages.  The default is 2.
* 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).
* 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.
* targets: The targets supported by the final stage LLVM/clang.
* 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.
* pgo: Whether to build with PGO (requires stages == 4).  The default is false.

The revisions are defined in taskcluster/kinds/fetch/toolchains.yml. They are usually commit sha1s corresponding to upstream tags.

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

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

* OSX_SYSROOT: Path to the OS X SDK directory for cross compile builds.