aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/qemu/qemu/no-valgrind.patch
blob: 91f728042d5fe3402a126d0fd5a723d12853d3af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
There isn't an option to enable or disable valgrind support, so disable it to avoid non-deterministic builds.

Upstream-Status: Inappropriate
Signed-off-by: Ross Burton <ross.burton@intel.com>

diff --git a/configure b/configure
index b3c4f51..4d3929e 100755
--- a/configure
+++ b/configure
@@ -4193,9 +4192,0 @@ valgrind_h=no
-cat > $TMPC << EOF
-#include <valgrind/valgrind.h>
-int main(void) {
-  return 0;
-}
-EOF
-if compile_prog "" "" ; then
-    valgrind_h=yes
-fi