gecko-dev/build/build-clang
2024-01-16 04:39:22 +00:00
..
1stage.json
2stages.json
4stages-pgo.json
allow-unversioned-android.patch Bug 1854022 - Adjust clang trunk patches to upstream changes. r=firefox-build-system-reviewers,andi 2023-09-20 20:02:15 +00:00
android-mangling-error_clang_12.patch
build-clang.py Bug 1857400 - Use CMAKE_MSVC_RUNTIME_LIBRARY instead of LLVM_USE_CRT_RELEASE. r=firefox-build-system-reviewers,sergesanspaille 2023-10-07 07:15:29 +00:00
clang-8-missing-header.patch Bug 1867202 - Fix missing include in clang 8. r=firefox-build-system-reviewers,ahochheiden 2023-11-30 08:48:34 +00:00
clang-8.0.json Bug 1867202 - Fix missing include in clang 8. r=firefox-build-system-reviewers,ahochheiden 2023-11-30 08:48:34 +00:00
clang-14.json Bug 1856501 - Remove revert-llvmorg-14-init-14141-gd6d3000a2f6d.patch. r=firefox-build-system-reviewers,sergesanspaille 2023-10-05 08:45:31 +00:00
clang-17.json Bug 1867867 - Restore temporal instrumentation support in clang r=glandium 2023-12-05 13:01:31 +00:00
clang-tidy-ci.patch
clang-tidy-external-linux64.json Bug 1836193 - Update builders to clang 17. r=andi 2023-09-26 00:17:17 +00:00
clang-tidy-linux64.json Bug 1836193 - Update builders to clang 17. r=andi 2023-09-26 00:17:17 +00:00
clang-tidy-macosx64.json Bug 1836193 - Update builders to clang 17. r=andi 2023-09-26 00:17:17 +00:00
clang-tidy-win64.json Bug 1856501 - Remove revert-llvmorg-14-init-14141-gd6d3000a2f6d.patch. r=firefox-build-system-reviewers,sergesanspaille 2023-10-05 08:45:31 +00:00
clang-trunk.json Bug 1867867 - Restore temporal instrumentation support in clang r=glandium 2023-12-05 13:01:31 +00:00
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 Bug 1851754 - Upgrade minimum supported Clang version to 8. r=firefox-build-system-reviewers,ahochheiden 2023-09-22 02:34:51 +00:00
llvmorg-15-init-16512-g4b1e3d193706.patch
macosx64-aarch64.json
macosx64.json
partial-revert-llvmorg-16-init-17151-gaa0883b59ae1_clang_17.patch Bug 1838566 - Update patch to fit clang upstream changes. r=firefox-build-system-reviewers,ahochheiden 2023-06-15 20:44:04 +00:00
partial-revert-llvmorg-17-init-17713-gc8e055d485ea.patch Bug 1843218 - Partially revert a clang change that relies on something we revert. r=firefox-build-system-reviewers,sergesanspaille 2023-07-17 20:41:28 +00:00
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 Bug 1854022 - Adjust clang trunk patches to upstream changes. r=firefox-build-system-reviewers,andi 2023-09-20 20:02:15 +00:00
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 Bug 1854022 - Adjust clang trunk patches to upstream changes. r=firefox-build-system-reviewers,andi 2023-09-20 20:02:15 +00:00
revert-llvmorg-18-init-6208-g2baf4a06ef06.patch Bug 1854022 - Adjust clang trunk patches to upstream changes. r=firefox-build-system-reviewers,andi 2023-09-20 20:02:15 +00:00
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.