diff options
| author | Kirill A. Shutemov | 2009-09-12 01:17:53 +0200 |
|---|---|---|
| committer | Blue Swirl | 2009-09-12 15:14:59 +0200 |
| commit | 5791f45b58d2147a7a642e3fe0eb68f2f265d254 (patch) | |
| tree | 5faec853c84fe9b92db4b8bf3da021b9cbb9aae0 | |
| parent | Work around OpenSolaris sys/regset.h namespace pollution (diff) | |
| download | qemu-5791f45b58d2147a7a642e3fe0eb68f2f265d254.tar.gz qemu-5791f45b58d2147a7a642e3fe0eb68f2f265d254.tar.xz qemu-5791f45b58d2147a7a642e3fe0eb68f2f265d254.zip | |
Do not link usermode targets with libhw*.a
Usermode targets are hardware-independed.
Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name>
Acked-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
| -rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
