Skip to content

Commit 7a2fff8

Browse files
Merge #1758: ci: Drop workaround for Valgrind older than 3.20.0
c09519f ci: Drop workaround for Valgrind older than 3.20.0 (Hennadii Stepanov) Pull request description: This is no longer needed in the current CI framework. If someone runs the CI scripts locally, it is reasonable to expect that they are using up-to-date tools, including Valgrind. ACKs for top commit: real-or-random: ACK c09519f Tree-SHA512: ef840dc8fd6e29110e194e35139050d9720bf8b38e89497790dcf5f2f2ce603805b572fb7408b4ae47bda31289a05548671ac41923f6ab3d1fbf288855f058d0
2 parents 43e7b11 + c09519f commit 7a2fff8

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

ci/ci.sh

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,6 @@ if [ -n "$WRAPPER_CMD" ]; then
5252
$WRAPPER_CMD --version
5353
fi
5454

55-
# Workaround for https://bugs.kde.org/show_bug.cgi?id=452758 (fixed in valgrind 3.20.0).
56-
case "${CC:-undefined}" in
57-
clang*)
58-
if [ "$CTIMETESTS" = "yes" ] && [ "$WITH_VALGRIND" = "yes" ]
59-
then
60-
export CFLAGS="${CFLAGS:+$CFLAGS }-gdwarf-4"
61-
else
62-
case "$WRAPPER_CMD" in
63-
valgrind*)
64-
export CFLAGS="${CFLAGS:+$CFLAGS }-gdwarf-4"
65-
;;
66-
esac
67-
fi
68-
;;
69-
esac
70-
7155
./autogen.sh
7256

7357
./configure \

0 commit comments

Comments
 (0)