From: Kirill A. Shutemov Date: Fri, 11 Sep 2009 23:17:53 +0000 (+0300) Subject: Do not link usermode targets with libhw*.a X-Git-Tag: v0.12.0-rc0~1119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5791f45b58d2147a7a642e3fe0eb68f2f265d254;p=thirdparty%2Fqemu.git Do not link usermode targets with libhw*.a Usermode targets are hardware-independed. Signed-off-by: Kirill A. Shutemov Acked-by: Juan Quintela Signed-off-by: Blue Swirl --- diff --git a/configure b/configure index 1160cf65596..5970ca87b48 100755 --- a/configure +++ b/configure @@ -2226,15 +2226,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