From patchwork Fri Sep 11 23:17:53 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kirill A. Shutemov" X-Patchwork-Id: 33485 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by bilbo.ozlabs.org (Postfix) with ESMTPS id 67F40B70CF for ; Sat, 12 Sep 2009 06:18:42 +1000 (EST) Received: from localhost ([127.0.0.1]:42738 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MmCZr-00024X-1B for incoming@patchwork.ozlabs.org; Fri, 11 Sep 2009 16:18:39 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MmCZK-00024H-8G for qemu-devel@nongnu.org; Fri, 11 Sep 2009 16:18:06 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MmCZI-00023K-2Z for qemu-devel@nongnu.org; Fri, 11 Sep 2009 16:18:05 -0400 Received: from [199.232.76.173] (port=34641 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MmCZH-00023F-RX for qemu-devel@nongnu.org; Fri, 11 Sep 2009 16:18:03 -0400 Received: from fg-out-1718.google.com ([72.14.220.158]:10192) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MmCZF-0005eZ-Mn for qemu-devel@nongnu.org; Fri, 11 Sep 2009 16:18:02 -0400 Received: by fg-out-1718.google.com with SMTP id d23so419402fga.10 for ; Fri, 11 Sep 2009 13:17:58 -0700 (PDT) Received: by 10.86.169.25 with SMTP id r25mr2668128fge.17.1252700278406; Fri, 11 Sep 2009 13:17:58 -0700 (PDT) Received: from localhost.localdomain (a88-114-220-92.elisa-laajakaista.fi [88.114.220.92]) by mx.google.com with ESMTPS id e11sm361208fga.26.2009.09.11.13.17.56 (version=SSLv3 cipher=RC4-MD5); Fri, 11 Sep 2009 13:17:57 -0700 (PDT) From: "Kirill A. Shutemov" To: qemu-devel@nongnu.org Date: Sat, 12 Sep 2009 02:17:53 +0300 Message-Id: <1252711075-32404-1-git-send-email-kirill@shutemov.name> X-Mailer: git-send-email 1.6.4.2 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Cc: "Kirill A. Shutemov" Subject: [Qemu-devel] [PATCH 1/3] Do not link usermode targets with libhw*.a X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Usermode targets are hardware-independed. Signed-off-by: Kirill A. Shutemov Acked-by: Juan Quintela --- configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 5232172..1ecb1ab 100755 --- a/configure +++ b/configure @@ -2207,15 +2207,15 @@ case "$target_arch2" in echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak fi esac -echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_mak -echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak if test "$target_bigendian" = "yes" ; then echo "TARGET_WORDS_BIGENDIAN=y" >> $config_mak fi if test "$target_softmmu" = "yes" ; then echo "CONFIG_SOFTMMU=y" >> $config_mak echo "LIBS+=$libs_softmmu" >> $config_mak + echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak + echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak fi if test "$target_user_only" = "yes" ; then echo "CONFIG_USER_ONLY=y" >> $config_mak