From patchwork Wed Jun 22 17:33:31 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 101518 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 49645B6FBD for ; Thu, 23 Jun 2011 03:37:15 +1000 (EST) Received: from localhost ([::1]:49399 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZRMV-00007L-Dg for incoming@patchwork.ozlabs.org; Wed, 22 Jun 2011 13:37:11 -0400 Received: from eggs.gnu.org ([140.186.70.92]:36321) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZRJB-00006K-OV for qemu-devel@nongnu.org; Wed, 22 Jun 2011 13:33:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QZRJ9-0000j0-HK for qemu-devel@nongnu.org; Wed, 22 Jun 2011 13:33:45 -0400 Received: from mnementh.archaic.org.uk ([81.2.115.146]:54088) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZRJ8-0000hV-N4 for qemu-devel@nongnu.org; Wed, 22 Jun 2011 13:33:43 -0400 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1QZRIz-0004jM-VE; Wed, 22 Jun 2011 18:33:33 +0100 From: Peter Maydell To: Anthony Liguori , qemu-devel@nongnu.org Date: Wed, 22 Jun 2011 18:33:31 +0100 Message-Id: <1308764013-18149-7-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1308764013-18149-1-git-send-email-peter.maydell@linaro.org> References: <1308764013-18149-1-git-send-email-peter.maydell@linaro.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 81.2.115.146 Cc: Aurelien Jarno Subject: [Qemu-devel] [PATCH 6/8] Revert "Makefile.target: Allow target helpers to be in any *_helper.c file" 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 Reverts commit 348883d4828d7434e1053407818598f7fb15e594, so the global env is no longer available to helper.c files other than op_helper.c. Signed-off-by: Peter Maydell --- Makefile.target | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.target b/Makefile.target index 03d3646..37bb28e 100644 --- a/Makefile.target +++ b/Makefile.target @@ -91,7 +91,7 @@ tcg/tcg.o: cpu.h # HELPER_CFLAGS is used for all the code compiled with static register # variables -%_helper.o cpu-exec.o user-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS) +op_helper.o cpu-exec.o user-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS) # Note: this is a workaround. The real fix is to avoid compiling # cpu_signal_handler() in user-exec.c.