From c96199e51edb6438bb8ba8ca811e5a7949cad878 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Tue, 13 May 2025 07:52:50 +0200 Subject: [PATCH] github: Enable BFD backtraces for Botan build with LD A change in 3.8.* prevents symbols from getting resolved otherwise. --- scripts/test.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/test.sh b/scripts/test.sh index de665ed8fa..d58fa8406d 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -253,6 +253,10 @@ botan) CONFIG="--disable-defaults --enable-pki --enable-botan --enable-pem --enable-hmac --enable-x509 --enable-constraints --enable-drbg" export TESTS_PLUGINS="test-vectors botan! pem hmac x509 constraints drbg" DEPS="" + if [ "$LEAK_DETECTIVE" = "yes" ]; then + CONFIG="$CONFIG --enable-bfd-backtraces" + DEPS="$DEPS binutils-dev" + fi if test "$1" = "build-deps"; then build_botan fi -- 2.47.2