gecko-dev/build/build-clang
2024-01-16 04:39:22 +00:00
..
1stage.json
2stages.json
4stages-pgo.json
allow-unversioned-android.patch
android-mangling-error_clang_12.patch
build-clang.py
clang-8-missing-header.patch
clang-8.0.json
clang-14.json
clang-17.json
clang-tidy-ci.patch
clang-tidy-external-linux64.json
clang-tidy-linux64.json
clang-tidy-macosx64.json
clang-tidy-win64.json
clang-trunk.json
compiler-rt-rss-limit-heap-profile.patch
D146664.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
linux64.json
llvmorg-10-init-136-gb288d90b39f4.patch
llvmorg-15-init-16512-g4b1e3d193706.patch
macosx64-aarch64.json
macosx64.json
partial-revert-llvmorg-16-init-17151-gaa0883b59ae1_clang_17.patch
partial-revert-llvmorg-17-init-17713-gc8e055d485ea.patch
profile.json
README
Remove-FlushViewOfFile-when-unmaping-gcda-files.patch
revert-llvmorg-15-init-11205-gcead4eceb01b_clang_16.patch
revert-llvmorg-15-init-11205-gcead4eceb01b_clang_18.patch Bug 1874524 - Adjust clang patches to recent upstream changes. r=firefox-build-system-reviewers,ahochheiden 2024-01-16 04:39:22 +00: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-17-init-4120-g02e8eb1a438b_clang_18.patch Bug 1874524 - Adjust clang patches to recent upstream changes. r=firefox-build-system-reviewers,ahochheiden 2024-01-16 04:39:22 +00:00
revert-llvmorg-17-init-4120-g02e8eb1a438b.patch
revert-llvmorg-18-init-6188-gc649f29c24c9.patch Bug 1870206 - Remove ReleaseNotes part of the clang patches. r=firefox-build-system-reviewers,ahochheiden 2023-12-18 20:14:31 +00:00
revert-llvmorg-18-init-6193-gb88cffeafd39.patch
revert-llvmorg-18-init-6208-g2baf4a06ef06.patch
skip-3-stages.json
skip-stage-1-win64.json
skip-stage-1.json
unpoison-thread-stacks_clang_10.patch
win64-ret-null-on-commitment-limit_clang_14.patch
win64.json

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/ci/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.

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