From patchwork Wed Nov 14 13:12:18 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cornelia Huck X-Patchwork-Id: 198904 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 60B652C00A9 for ; Thu, 15 Nov 2012 00:13:11 +1100 (EST) Received: from localhost ([::1]:53148 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYcmC-0002mg-BT for incoming@patchwork.ozlabs.org; Wed, 14 Nov 2012 08:13:08 -0500 Received: from eggs.gnu.org ([208.118.235.92]:44601) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYclY-0001NV-C0 for qemu-devel@nongnu.org; Wed, 14 Nov 2012 08:12:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TYclV-0002Np-8t for qemu-devel@nongnu.org; Wed, 14 Nov 2012 08:12:28 -0500 Received: from e06smtp16.uk.ibm.com ([195.75.94.112]:38305) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYclV-0002NF-0a for qemu-devel@nongnu.org; Wed, 14 Nov 2012 08:12:25 -0500 Received: from /spool/local by e06smtp16.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 14 Nov 2012 13:12:22 -0000 Received: from b06cxnps3075.portsmouth.uk.ibm.com (9.149.109.195) by e06smtp16.uk.ibm.com (192.168.101.146) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Wed, 14 Nov 2012 13:12:20 -0000 Received: from d06av05.portsmouth.uk.ibm.com (d06av05.portsmouth.uk.ibm.com [9.149.37.229]) by b06cxnps3075.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id qAEDCCc856098894 for ; Wed, 14 Nov 2012 13:12:12 GMT Received: from d06av05.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av05.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id qAEDCJKl020197 for ; Wed, 14 Nov 2012 06:12:19 -0700 Received: from tuxmaker.boeblingen.de.ibm.com (tuxmaker.boeblingen.de.ibm.com [9.152.85.9]) by d06av05.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id qAEDCJl7020164; Wed, 14 Nov 2012 06:12:19 -0700 From: Cornelia Huck To: qemu-devel , Paolo Bonzini , Anthony Liguori Date: Wed, 14 Nov 2012 14:12:18 +0100 Message-Id: <1352898739-57797-2-git-send-email-cornelia.huck@de.ibm.com> X-Mailer: git-send-email 1.7.12.4 In-Reply-To: <1352898739-57797-1-git-send-email-cornelia.huck@de.ibm.com> References: <1352898739-57797-1-git-send-email-cornelia.huck@de.ibm.com> x-cbid: 12111413-3548-0000-0000-000003ACD6D2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 195.75.94.112 Subject: [Qemu-devel] [PATCH 1/2] tests/tcg: test_path is not i386 only X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org test_path is supposed to be run for all architectures, so it should use the main compiler instead of the i386 compiler. Signed-off-by: Cornelia Huck --- tests/tcg/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tcg/Makefile b/tests/tcg/Makefile index 24e3154..2ffa067 100644 --- a/tests/tcg/Makefile +++ b/tests/tcg/Makefile @@ -81,10 +81,10 @@ run-test_path: test_path # rules to compile tests test_path: test_path.o - $(CC_I386) $(LDFLAGS) -o $@ $^ $(LIBS) + $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) test_path.o: test_path.c - $(CC_I386) $(QEMU_INCLUDES) $(GLIB_CFLAGS) $(CFLAGS) -c -o $@ $^ + $(CC) $(QEMU_INCLUDES) $(GLIB_CFLAGS) $(CFLAGS) -c -o $@ $^ hello-i386: hello-i386.c $(CC_I386) -nostdlib $(CFLAGS) -static $(LDFLAGS) -o $@ $<