From: Alexander Hansen Færøy Date: Tue, 18 Mar 2025 12:37:39 +0000 (+0100) Subject: CI: Install libclang-rt-dev when build with hardening enabled. X-Git-Tag: tor-0.4.8.15~4^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3e210e12e07733434f667f86e60be5511fc44bd;p=thirdparty%2Ftor.git CI: Install libclang-rt-dev when build with hardening enabled. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c9894ab45a..4326866c6c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -103,7 +103,7 @@ variables: # llvm-symbolizer for sanitizer backtrace - if [ "$HARDENING" = yes ]; then apt-get install llvm; fi # libubsan1 for building with -fsanitize=address - - if [ "$HARDENING" = yes ]; then apt-get install libubsan1; fi + - if [ "$HARDENING" = yes ]; then apt-get install libubsan1 libclang-rt-dev; fi # TODO: This next line should not be debian-only. - if [ "$STEM" = yes ]; then git clone --depth 1 https://gitlab.torproject.org/tpo/network-health/stem.git ; export STEM_PATH="$(pwd)/stem"; fi # TODO: This next line should not be debian-only.