From a507683589145207a0c272f6f2b5b4fd1a39e770 Mon Sep 17 00:00:00 2001 From: TapTap Date: Sun, 19 Jul 2026 23:05:47 +0200 Subject: [PATCH] fix: add libclang-rt-18-dev to CI image for fuzz targets The clang-18 runtime libraries (fuzzer, ubsan, asan) were missing from the fastsync-ci:v8 image because libclang-rt-18-dev was not installed. This caused all 6 fuzz targets to fail at link time with 'cannot find libclang_rt.fuzzer-x86_64.a'. Added the package to Dockerfile, rebuilt and pushed v8. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 176856c..c94d26f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:24.04 RUN apt-get update && apt-get install -y --no-install-recommends \ gcc g++ make libc6-dev cmake libzstd-dev libssl-dev git ca-certificates curl cppcheck clang-format \ python3 python3-pip python3-venv openssl openssh-client \ - lcov valgrind clang && \ + lcov valgrind clang libclang-rt-18-dev && \ pip3 install --break-system-packages pytest && \ curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \ apt-get install -y --no-install-recommends nodejs && \