An open API service indexing awesome lists of open source software.

https://github.com/robrich999/chromium_clang

Chromium browser compiled with the Clang/LLVM compiler.
https://github.com/robrich999/chromium_clang

avx avx2 chromium-browser chromium-clang clang fullllto linux lld llvm optimization performance pgo polly thinlto windows

Last synced: 15 days ago
JSON representation

Chromium browser compiled with the Clang/LLVM compiler.

Awesome Lists containing this project

README

          

**Chromium_Clang:**

The Chromium web browser for Windows and Linux built with the open source Clang compiler and LLD linker.

Additional features of the builds include modified compiler and linker optimizations via build configuration modifications.

Implementation of various options are subject to change depending upon performance, stability, and similar paramaters.

****

**Links to latest Linux build releases in deb and rpm package formats:**

https://github.com/RobRich999/Chromium_Clang/releases/tag/v150.0.7869.0-r1639044-linux64-deb-avx

https://github.com/RobRich999/Chromium_Clang/releases/tag/v150.0.7869.0-r1639044-linux64-rpm-avx

https://github.com/RobRich999/Chromium_Clang/releases/tag/v150.0.7869.0-r1639044-linux64-deb-avx2

https://github.com/RobRich999/Chromium_Clang/releases/tag/v150.0.7869.0-r1639044-linux64-rpm-avx2

**Link for Arch Linux build (derived from rpm above) via AUR by [s1mpleog](https://github.com/s1mpleog):**

https://aur.archlinux.org/packages/chromium-clang-avx2-bin

****

**Links to latest Windows build releases:**

https://github.com/RobRich999/Chromium_Clang/releases/tag/v149.0.7785.0-r1613160-win64-avx

https://github.com/RobRich999/Chromium_Clang/releases/tag/v149.0.7785.0-r1613160-win64-avx2

https://github.com/RobRich999/Chromium_Clang/releases/tag/v148.0.7759.0-r1606362-win64-avx512

*Chromium_Clang for Windows builds are cross-compiled under Linux.*

****

**Optimization-related build tags:**

Builds marked with the "+fulllto" tag utilize whole-program analysis and cross-module optimization using "full" link time optimization.

Builds marked with the "+thinlto" tag utilize whole-program analysis and cross-module optimization using "thin" link time optimization.

Builds marked with the "+pgo" tag utilize profile-guided optimization.

Builds marked with the "+polly" tag utilize the Polly "high-level loop and data-locality optimizer and optimization infrastructure for LLVM."

Builds marked with the "+fast-math" tag utilize aggressive floating-point optimizations for various hot code paths.

Builds marked with the "+avx" tag require processors with AVX instruction set support.

Builds marked with the "+avx2" tag require processors with AVX2 instruction set support.

Builds marked with the "+avx512" tag require processors with AVX512 instruction set support.

Builds marked with the "+fma" tag require processors with FMA instruction set support.

Builds marked with the "+sse2" tag (deprecated) require processors with SSE2 instruction set support. AVX support is not required.

Builds marked with the "+sse3" tag (deprecated) require processors with SSE3 instruction set support. AVX support is not required.

Builds marked with the "+amd_znver2" (deprecated) tag are AVX2 builds tuned for the AMD Zen 2 processor microarchitecture.

*SSE3 support is the Chromium project's own minimum SIMD requirement on x86 platforms as of v89 builds.*

****

**Primary reason for AVX/AVX2/AVX512 build recommendation:**

https://johnk.dev/articles/vex-transition-penalties.html

****

**Note regarding FFmpeg:**

Apply the /third_party/ffmpeg patches available here:

https://github.com/StaZhu/enable-chromium-hevc-hardware-decoding

The other changes are present already in the Chromium-Clang diff patches.

****

*Typical third-party build disclaimer. No warranties. No guarantees. Your mileage may vary. Use at your own risk.*