From c09519f0e383da3c36e33522ca8708c17103d96a Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Wed, 15 Oct 2025 15:20:38 +0100 Subject: [PATCH] ci: Drop workaround for Valgrind older than 3.20.0 --- ci/ci.sh | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/ci/ci.sh b/ci/ci.sh index 08e84efd..515c14cd 100755 --- a/ci/ci.sh +++ b/ci/ci.sh @@ -52,22 +52,6 @@ if [ -n "$WRAPPER_CMD" ]; then $WRAPPER_CMD --version fi -# Workaround for https://bugs.kde.org/show_bug.cgi?id=452758 (fixed in valgrind 3.20.0). -case "${CC:-undefined}" in - clang*) - if [ "$CTIMETESTS" = "yes" ] && [ "$WITH_VALGRIND" = "yes" ] - then - export CFLAGS="${CFLAGS:+$CFLAGS }-gdwarf-4" - else - case "$WRAPPER_CMD" in - valgrind*) - export CFLAGS="${CFLAGS:+$CFLAGS }-gdwarf-4" - ;; - esac - fi - ;; -esac - ./autogen.sh ./configure \