blob: 70baf0fb09213d324f63e74dd34bb3483f4d3b52 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From 4475b3d97371e588540333988a97d7df3ec2c65a Mon Sep 17 00:00:00 2001
Brad Bishopd5ae7d92018-06-14 09:52:03 -07002From: Ross Burton <ross.burton@intel.com>
3Date: Tue, 20 Oct 2015 22:19:08 +0100
4Subject: [PATCH] qemu: disable Valgrind
5
6There isn't an option to enable or disable valgrind support, so disable it to avoid non-deterministic builds.
7
8Upstream-Status: Inappropriate
9Signed-off-by: Ross Burton <ross.burton@intel.com>
10---
11 configure | 9 ---------
12 1 file changed, 9 deletions(-)
13
14diff --git a/configure b/configure
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080015index 0a19b033bc..69e05fb6c0 100755
Brad Bishopd5ae7d92018-06-14 09:52:03 -070016--- a/configure
17+++ b/configure
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080018@@ -4895,15 +4895,6 @@ fi
Brad Bishopd5ae7d92018-06-14 09:52:03 -070019 # check if we have valgrind/valgrind.h
20
21 valgrind_h=no
22-cat > $TMPC << EOF
23-#include <valgrind/valgrind.h>
24-int main(void) {
25- return 0;
26-}
27-EOF
28-if compile_prog "" "" ; then
29- valgrind_h=yes
30-fi
31
32 ########################################
33 # check if environ is declared