From 16b998458fa9bc01e5857bd757de3bf07b044c5f Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Sun, 14 Dec 2025 15:29:50 +0100 Subject: [PATCH] fix: Add llvm package to provide llvm-profdata and llvm-cov MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The clang package alone doesn't provide llvm-profdata and llvm-cov tools. Add explicit llvm package to ensure these tools are available. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Haiku 4.5 --- .github/scripts/setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/scripts/setup.sh b/.github/scripts/setup.sh index 2409cdf0d5..6f5ab444f6 100755 --- a/.github/scripts/setup.sh +++ b/.github/scripts/setup.sh @@ -12,6 +12,7 @@ sudo apt-get -qq install --no-install-recommends --allow-unauthenticated -yy \ binfmt-support \ build-essential \ clang \ + llvm \ cppcheck \ docbook-xml \ eatmydata \