From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MioqD-0008Op-Eh for qemu-devel@nongnu.org; Wed, 02 Sep 2009 08:21:33 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mioq8-0008MF-IS for qemu-devel@nongnu.org; Wed, 02 Sep 2009 08:21:32 -0400 Received: from [199.232.76.173] (port=57107 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mioq8-0008M9-D0 for qemu-devel@nongnu.org; Wed, 02 Sep 2009 08:21:28 -0400 Received: from mail-bw0-f227.google.com ([209.85.218.227]:48647) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mioq8-0006Gq-3h for qemu-devel@nongnu.org; Wed, 02 Sep 2009 08:21:28 -0400 Received: by bwz27 with SMTP id 27so767560bwz.34 for ; Wed, 02 Sep 2009 05:21:27 -0700 (PDT) From: "Kirill A. Shutemov" Date: Wed, 2 Sep 2009 18:21:22 +0300 Message-Id: <1251904883-13706-1-git-send-email-kirill@shutemov.name> Subject: [Qemu-devel] [PATCH 1/2] Do not link *-user target with libhw*.a List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: "Kirill A. Shutemov" user targets are hardware-independed. Signed-off-by: Kirill A. Shutemov --- configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index b805f10..0d0162a 100755 --- a/configure +++ b/configure @@ -2173,15 +2173,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 -- 1.6.3.4