From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60450) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ShMQ1-0007l3-Ci for qemu-devel@nongnu.org; Wed, 20 Jun 2012 11:02:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ShMPw-0002yo-MJ for qemu-devel@nongnu.org; Wed, 20 Jun 2012 11:02:04 -0400 Received: from mail-bk0-f45.google.com ([209.85.214.45]:61719) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ShMPw-0002yT-FR for qemu-devel@nongnu.org; Wed, 20 Jun 2012 11:02:00 -0400 Received: by bkwj10 with SMTP id j10so6668730bkw.4 for ; Wed, 20 Jun 2012 08:01:56 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <4FE1E355.3010102@suse.de> References: <1340203444-20394-1-git-send-email-aliguori@us.ibm.com> <4FE1E355.3010102@suse.de> Date: Wed, 20 Jun 2012 16:01:56 +0100 Message-ID: From: Peter Maydell Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH] build: introduce target CONFIG_ variables and use them for kvm List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?Andreas_F=C3=A4rber?= Cc: Paolo Bonzini , Anthony Liguori , qemu-devel@nongnu.org On 20 June 2012 15:51, Andreas F=C3=A4rber wrote: > Am 20.06.2012 16:44, schrieb Anthony Liguori: >> --- a/hw/kvm/Makefile.objs >> +++ b/hw/kvm/Makefile.objs >> @@ -1 +1 @@ >> -obj-$(CONFIG_KVM) +=3D clock.o apic.o i8259.o ioapic.o i8254.o >> +obj-$(CONFIG_I386) +=3D clock.o apic.o i8259.o ioapic.o i8254.o > > NACK. As long as the CPUState conversion is not completed (which after > part 4 will take some time still) any user of CPUArchState must be > compiled per target, not per base target. I'm confused -- as far as I can tell these files are compiled per target, eg we have both CC i386-softmmu/hw/kvm/clock.o and CC x86_64-softmmu/hw/kvm/clock.o -- PMM