tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit d74d54cb383709071f19f988c53966f486e8b6df
parent ea0147a8b5f334956fb9177974d491beff8e990f
Author: Mike Hommey <mh+mozilla@glandium.org>
Date:   Tue, 11 Nov 2025 03:33:17 +0000

Bug 1998862 - Add the coverage linker flag at the configure level. r=firefox-build-system-reviewers,sergesanspaille

We've been relying on mozconfigs adding the necessary things for long
enough. We should make the builds as simple as humanly possible.

Interestingly enough, we're even adding the clang runtime manually while
clang adds it itself when the coverage flag is given.

What this doesn't handle yet, though, is the rust side of things.
But at least with this change the build doesn't straight fail.

Differential Revision: https://phabricator.services.mozilla.com/D271728

Diffstat:
Mbrowser/config/mozconfigs/linux64/code-coverage | 3---
Mbrowser/config/mozconfigs/macosx64/code-coverage | 3---
Mbuild/moz.configure/toolchain.configure | 1+
3 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/browser/config/mozconfigs/linux64/code-coverage b/browser/config/mozconfigs/linux64/code-coverage @@ -8,8 +8,5 @@ ac_add_options --disable-warnings-as-errors ac_add_options --without-wasm-sandboxed-libraries ac_add_options --enable-coverage -CLANG_LIB_DIR="$(cd $MOZ_FETCHES_DIR/clang/lib/clang/* && cd lib/linux && pwd)" -export LDFLAGS="--coverage -L$CLANG_LIB_DIR" -export LIBS="-lclang_rt.profile-x86_64" export RUSTFLAGS="-Ccodegen-units=1 -Zprofile -Cpanic=abort -Zpanic_abort_tests -Coverflow-checks=off" export RUSTDOCFLAGS="-Cpanic=abort" diff --git a/browser/config/mozconfigs/macosx64/code-coverage b/browser/config/mozconfigs/macosx64/code-coverage @@ -6,8 +6,5 @@ ac_add_options --disable-warnings-as-errors ac_add_options --without-wasm-sandboxed-libraries ac_add_options --enable-coverage -CLANG_LIB_DIR="$(cd $MOZ_FETCHES_DIR/clang/lib/clang/* && cd lib/darwin && pwd)" -export LDFLAGS="-coverage -L$CLANG_LIB_DIR" -export LIBS="-lclang_rt.profile_osx" export RUSTFLAGS="-Ccodegen-units=1 -Zprofile -Cpanic=abort -Zpanic_abort_tests -Coverflow-checks=off" export RUSTDOCFLAGS="-Cpanic=abort" diff --git a/build/moz.configure/toolchain.configure b/build/moz.configure/toolchain.configure @@ -3178,6 +3178,7 @@ def coverage_cflags(target, c_compiler, build_env): set_config("COVERAGE_CFLAGS", coverage_cflags) +add_linker_flag("--coverage", when=code_coverage & building_with_gnu_compatible_cc) # Assembler detection # ==============================================================