Skip to content

Commit

Permalink
Install lcov 1.15-1 manually
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshiotomakan committed Oct 14, 2024
1 parent 1ad9940 commit 6b620eb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/install-sys-dependencies-linux
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ sudo apt-get update && sudo apt-get install ninja-build llvm-14 clang-tidy-14 li

# As of now, Ubuntu 24.04 has lcov 2.0-4ubuntu2 only, but we don't support it yet.
# Install lcov 1.15-1 manually.
LCOV_DEB="$(mktemp)"
LCOV_TEMP="$(mktemp -d)"
LCOV_DEB="$LCOV_TEMP/lcov.deb"
wget -O "$LCOV_DEB" http://mirrors.kernel.org/ubuntu/pool/universe/l/lcov/lcov_1.15-1_all.deb
sudo apt-get install "$LCOV_DEB"
rm -rf $LCOV_DEB
rm -rf $LCOV_TEMP

0 comments on commit 6b620eb

Please sign in to comment.