From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:52911) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UN4ve-0000IQ-Fi for qemu-devel@nongnu.org; Tue, 02 Apr 2013 13:23:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UN4vd-0006uX-6x for qemu-devel@nongnu.org; Tue, 02 Apr 2013 13:23:26 -0400 Received: from mail-ea0-x229.google.com ([2a00:1450:4013:c01::229]:35895) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UN4vc-0006uQ-Vp for qemu-devel@nongnu.org; Tue, 02 Apr 2013 13:23:25 -0400 Received: by mail-ea0-f169.google.com with SMTP id n15so347620ead.28 for ; Tue, 02 Apr 2013 10:23:24 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <515B1406.7040005@redhat.com> Date: Tue, 02 Apr 2013 19:23:18 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1364914749-11141-1-git-send-email-pbonzini@redhat.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 00/36] hw/ reorganization, part 2 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefano Stabellini Cc: Peter Maydell , "qemu-devel@nongnu.org" , Andreas Faerber , Igor Mammedov Il 02/04/2013 19:01, Stefano Stabellini ha scritto: > On Tue, 2 Apr 2013, Paolo Bonzini wrote: >> This is part 2 of the reorganization. Following the discussion >> of March 18 between me and Peter, the ARM CPU cores are in hw/cpu >> (the i386 ICC device will also go there). >> >> The following changes since commit 5d45de9796539f95eb6b1201588362981f8cb2d4: >> >> microblaze: Add support for the sleep insn (2013-04-02 10:47:29 +0200) >> >> are available in the git repository at: >> >> git://github.com/bonzini/qemu.git hw-dirs >> >> for you to fetch changes up to 99490dcb5ef42ab1fac14600ceb83b99687a9b42: >> >> hw: move private headers to hw/ subdirectories. (2013-04-02 14:54:44 +0200) >> > > I tried to build your branch but I got the following: > > ./configure --disable-xen --target-list=i386-softmmu > > ./configure --enable-xen --target-list=i386-softmmu --extra-cflags="-I$DIR/tools/include -I$DIR/tools/libxc -I$DIR/tools/xenstore" --extra-ldflags="-L$DIR/tools/libxc -L$$DIR/tools/xenstore" --disable-kvm > > both produce this: > > make -j8 > /local/scratch/sstabellini/qemu/Makefile.objs:121: /local/scratch/sstabellini/qemu/hw/cpu/Makefile.objs: No such file or directory > make: *** No rule to make target `/local/scratch/sstabellini/qemu/hw/cpu/Makefile.objs'. Stop. Didn't "git add" it. Pushing a new branch at the same place, commit 9b4763e5c036b8e5f8889af9c1ae1aaba3af5dae, rebased and with the file. The contents is simply diff --git a/hw/cpu/Makefile.objs b/hw/cpu/Makefile.objs index e69de29..a49ca04 100644 --- a/hw/cpu/Makefile.objs +++ b/hw/cpu/Makefile.objs @@ -0,0 +1,4 @@ +obj-$(CONFIG_ARM11MPCORE) += arm11mpcore.o +obj-$(CONFIG_ARM9MPCORE) += a9mpcore.o +obj-$(CONFIG_ARM15MPCORE) += a15mpcore.o + Paolo