]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
CI: Install libclang-rt-dev when build with hardening enabled.
authorAlexander Hansen Færøy <ahf@torproject.org>
Tue, 18 Mar 2025 12:37:39 +0000 (13:37 +0100)
committerAlexander Hansen Færøy <ahf@torproject.org>
Wed, 19 Mar 2025 18:29:05 +0000 (19:29 +0100)
.gitlab-ci.yml

index c9894ab45a2e50ae4410310e0cbbd046ce40c72f..4326866c6c9ef26d678605a97209e7327e40becb 100644 (file)
@@ -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.