We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a72734 commit a178209Copy full SHA for a178209
ci/cirrus.sh
@@ -53,6 +53,22 @@ if [ -n "$WRAPPER_CMD" ]; then
53
$WRAPPER_CMD --version
54
fi
55
56
+# Workaround for https://bugs.kde.org/show_bug.cgi?id=452758 (fixed in valgrind 3.20.0).
57
+case "${CC:-undefined}" in
58
+ clang*)
59
+ if [ "$CTIMETESTS" = "yes" ] && [ "$WITH_VALGRIND" = "yes" ]
60
+ then
61
+ export CFLAGS="${CFLAGS:+$CFLAGS }-gdwarf-4"
62
+ else
63
+ case "$WRAPPER_CMD" in
64
+ valgrind*)
65
66
+ ;;
67
+ esac
68
+ fi
69
70
+esac
71
+
72
./autogen.sh
73
74
./configure \
0 commit comments