From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:36768) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SfTlw-0007gT-LT for qemu-devel@nongnu.org; Fri, 15 Jun 2012 06:29:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SfTlq-0003X6-Km for qemu-devel@nongnu.org; Fri, 15 Jun 2012 06:28:56 -0400 Received: from plane.gmane.org ([80.91.229.3]:50822) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SfTlq-0003We-DH for qemu-devel@nongnu.org; Fri, 15 Jun 2012 06:28:50 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1SfTlm-0005ED-Lm for qemu-devel@nongnu.org; Fri, 15 Jun 2012 12:28:46 +0200 Received: from 93-34-204-25.ip51.fastwebnet.it ([93.34.204.25]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 15 Jun 2012 12:28:46 +0200 Received: from pbonzini by 93-34-204-25.ip51.fastwebnet.it with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 15 Jun 2012 12:28:46 +0200 From: Paolo Bonzini Date: Fri, 15 Jun 2012 12:28:37 +0200 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit In-Reply-To: Subject: Re: [Qemu-devel] [PATCHv2 01/13] unicore32-softmmu: Add unicore32-softmmu build support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Il 15/06/2012 11:47, Guan Xuetao ha scritto: > This patch adds unicore32-softmmu build support, include configure, > makefile, arch_init, and all missing functions needed by softmmu. > Although all missing functions are empty, unicore32-softmmu could > be build successfully. > > Signed-off-by: Guan Xuetao > --- > Makefile.target | 2 + > arch_init.c | 2 + > arch_init.h | 1 + > configure | 1 + > default-configs/unicore32-softmmu.mak | 1 + > target-unicore32/helper.c | 25 +++++++++++---------- > target-unicore32/machine.c | 23 +++++++++++++++++++ > target-unicore32/op_helper.c | 24 +++++++++++++++++++- > target-unicore32/softmmu.c | 39 +++++++++++++++++++++++++++++++++ > 9 files changed, 105 insertions(+), 13 deletions(-) > create mode 100644 default-configs/unicore32-softmmu.mak > create mode 100644 target-unicore32/machine.c > create mode 100644 target-unicore32/softmmu.c > > diff --git a/Makefile.target b/Makefile.target > index 1582904..7d3b1fd 100644 > --- a/Makefile.target > +++ b/Makefile.target > @@ -387,6 +387,8 @@ obj-xtensa-y += core-dc232b.o > obj-xtensa-y += core-dc233c.o > obj-xtensa-y += core-fsf.o > > +obj-unicore32-y += softmmu.o > + You need to rebase this and put this line (actually obj-$(CONFIG_SOFTMMU) += softmmu.o) in target-unicore32/Makefile.objs. Paolo