tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit d3e210e12e07733434f667f86e60be5511fc44bd
parent 295fd9dad9634413e9b6bdb32b7f183812c30fce
Author: Alexander Hansen Færøy <ahf@torproject.org>
Date:   Tue, 18 Mar 2025 13:37:39 +0100

CI: Install libclang-rt-dev when build with hardening enabled.

Diffstat:
M.gitlab-ci.yml | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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.