gecko-dev/build/build-clang
2024-04-25 20:01:20 +00:00
..
1stage.json
2stages.json
4stages-pgo.json
allow-unversioned-android.patch
android-mangling-error_clang_12.patch
arm64e-hack.patch Bug 1889822 - Add hackish support for arm64e to LLD. r=firefox-build-system-reviewers,ahochheiden 2024-04-09 21:51:57 +00:00
build-clang.py Bug 1882441 - Enable libxml2 support in windows clang. r=firefox-build-system-reviewers,ahochheiden 2024-02-29 22:53:01 +00:00
clang-8-missing-header.patch
clang-8.0.json
clang-14.json
clang-17.json Bug 1874251 - Apply clang trunk patch fixing -fsanitize=function on macOS. r=firefox-build-system-reviewers,ahochheiden 2024-04-25 20:01:20 +00:00
clang-18.json Bug 1874251 - Apply clang trunk patch fixing -fsanitize=function on macOS. r=firefox-build-system-reviewers,ahochheiden 2024-04-25 20:01:20 +00:00
clang-tidy-ci.patch
clang-tidy-external-linux64.json
clang-tidy-linux64.json
clang-tidy-macosx64.json
clang-tidy-win64.json
clang-trunk.json Bug 1889822 - Add hackish support for arm64e to LLD. r=firefox-build-system-reviewers,ahochheiden 2024-04-09 21:51:57 +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
llvm-symbolizer-17.json Bug 1892128 - Simplify the llvm-symbolizer patch for bug 1798613. r=firefox-build-system-reviewers,sergesanspaille 2024-04-18 19:48:58 +00:00
llvm-symbolizer-18.json Bug 1892128 - Simplify the llvm-symbolizer patch for bug 1798613. r=firefox-build-system-reviewers,sergesanspaille 2024-04-18 19:48:58 +00:00
llvm-symbolizer-trunk.json Bug 1892128 - Simplify the llvm-symbolizer patch for bug 1798613. r=firefox-build-system-reviewers,sergesanspaille 2024-04-18 19:48:58 +00:00
llvmorg-10-init-136-gb288d90b39f4.patch
llvmorg-15-init-16512-g4b1e3d193706.patch
llvmorg-18-init-8471-g160e8eb44961.patch Bug 1883080 - Backport ASAN interceptor patch to support unhandled instruction in new MSVCRT. r=firefox-build-system-reviewers 2024-03-07 20:30:09 +00:00
llvmorg-19-init-7654-gc23135c5488f.patch Bug 1874251 - Apply clang trunk patch fixing -fsanitize=function on macOS. r=firefox-build-system-reviewers,ahochheiden 2024-04-25 20:01:20 +00:00
macosx64-aarch64.json
macosx64.json
partial-revert-llvmorg-15-init-11205-gcead4eceb01b_clang_18.patch Bug 1892128 - Simplify the llvm-symbolizer patch for bug 1798613. r=firefox-build-system-reviewers,sergesanspaille 2024-04-18 19:48:58 +00:00
partial-revert-llvmorg-15-init-11205-gcead4eceb01b.patch Bug 1892128 - Simplify the llvm-symbolizer patch for bug 1798613. r=firefox-build-system-reviewers,sergesanspaille 2024-04-18 19:48:58 +00:00
partial-revert-llvmorg-16-init-17151-gaa0883b59ae1_clang_17.patch
profile.json
README Bug 1868440 - [ci] Upgrade taskcluster-taskgraph to v7.4.0, r=perftest-reviewers,geckoview-reviewers,ci-and-tooling,devtools-reviewers,taskgraph-reviewers,releng-reviewers,mach-reviewers,omc-reviewers,jmaher,hneiva,aminomancer,jari,dom-storage-reviewers,afinder,asuth,bhearsum,owlish 2024-04-18 20:39:09 +00:00
Remove-FlushViewOfFile-when-unmaping-gcda-files.patch
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 Bug 1892812 - Adjust revert-llvmorg-16-init-11301-g163bb6d64e5f_clang_19.patch to upstream changes. r=firefox-build-system-reviewers,ahochheiden 2024-04-25 01:19:49 +00:00
revert-llvmorg-18-init-6188-gc649f29c24c9.patch
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/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.

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