From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42058) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YrZyt-0004s8-22 for qemu-devel@nongnu.org; Sun, 10 May 2015 18:45:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YrZyo-0004oM-2D for qemu-devel@nongnu.org; Sun, 10 May 2015 18:45:54 -0400 Received: from blu004-omc1s18.hotmail.com ([65.55.116.29]:52011) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YrZyn-0004o6-Qp for qemu-devel@nongnu.org; Sun, 10 May 2015 18:45:49 -0400 Message-ID: Date: Mon, 11 May 2015 06:46:16 +0800 From: Chen Gang MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 10/10 v10] target-tilegx: Add TILE-Gx building files List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell , =?UTF-8?B?QW5kcmVhcyBGw6RyYg==?= =?UTF-8?B?ZXI=?= , "rth@twiddle.net" , Chris Metcalf Cc: "walt@tilera.com" , Riku Voipio , qemu-devel Add related configuration, make files for tilegx. Now, qemu tilegx can pass building. Signed-off-by: Chen Gang --- configure | 2 ++ default-configs/tilegx-linux-user.mak | 1 + target-tilegx/Makefile.objs | 1 + 3 files changed, 4 insertions(+) create mode 100644 default-configs/tilegx-linux-user.mak create mode 100644 target-tilegx/Makefile.objs diff --git a/configure b/configure index b18aa9e..0a32741 100755 --- a/configure +++ b/configure @@ -5243,6 +5243,8 @@ case "$target_name" in s390x) gdb_xml_files="s390x-core64.xml s390-acr.xml s390-fpr.xml" ;; + tilegx) + ;; tricore) ;; unicore32) diff --git a/default-configs/tilegx-linux-user.mak b/default-configs/tilegx-linux-user.mak new file mode 100644 index 0000000..3e47493 --- /dev/null +++ b/default-configs/tilegx-linux-user.mak @@ -0,0 +1 @@ +# Default configuration for tilegx-linux-user diff --git a/target-tilegx/Makefile.objs b/target-tilegx/Makefile.objs new file mode 100644 index 0000000..8b3dc76 --- /dev/null +++ b/target-tilegx/Makefile.objs @@ -0,0 +1 @@ +obj-y += cpu.o translate.o helper.o -- 1.9.3