From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47376) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeLYs-0003XA-AS for qemu-devel@nongnu.org; Wed, 15 Oct 2014 06:12:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XeLYm-000715-68 for qemu-devel@nongnu.org; Wed, 15 Oct 2014 06:12:06 -0400 Received: from mx1.redhat.com ([209.132.183.28]:25695) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeLYl-00070o-Up for qemu-devel@nongnu.org; Wed, 15 Oct 2014 06:12:00 -0400 From: Gerd Hoffmann Date: Wed, 15 Oct 2014 12:10:34 +0200 Message-Id: <1413367839-30999-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1413367839-30999-1-git-send-email-kraxel@redhat.com> References: <1413367839-30999-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH] [sparse] fix build List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pmatouse@redhat.com, Intel.Product.Security.Incident.Response.Team@intel.com, Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 9802e89..060c42a 100755 --- a/configure +++ b/configure @@ -4939,6 +4939,7 @@ echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak echo "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak if test "$sparse" = "yes" ; then echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak + echo "CXX := REAL_CC=\"\$(CXX)\" cgcc" >> $config_host_mak echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak fi -- 1.8.3.1