From patchwork Sat Jun 13 13:22:19 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chen Gang X-Patchwork-Id: 483871 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 96558140271 for ; Sat, 13 Jun 2015 23:22:11 +1000 (AEST) Received: from localhost ([::1]:55966 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z3lNx-00035J-MD for incoming@patchwork.ozlabs.org; Sat, 13 Jun 2015 09:22:09 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57809) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z3lNa-0002Zc-Pc for qemu-devel@nongnu.org; Sat, 13 Jun 2015 09:21:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z3lNX-0006nJ-AD for qemu-devel@nongnu.org; Sat, 13 Jun 2015 09:21:46 -0400 Received: from blu004-omc1s29.hotmail.com ([65.55.116.40]:50063) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z3lNX-0006mt-4f for qemu-devel@nongnu.org; Sat, 13 Jun 2015 09:21:43 -0400 Received: from BLU436-SMTP196 ([65.55.116.9]) by BLU004-OMC1S29.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751); Sat, 13 Jun 2015 06:21:42 -0700 X-TMN: [qVminHAPJPoK92PbQkfIvulfA+BUJ/hq] X-Originating-Email: [xili_gchen_5257@hotmail.com] Message-ID: Date: Sat, 13 Jun 2015 21:22:19 +0800 From: Chen Gang User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Peter Maydell , Chris Metcalf , "rth@twiddle.net" , =?UTF-8?B?QW5kcmVhcyBGw6RyYmVy?= References: In-Reply-To: X-OriginalArrivalTime: 13 Jun 2015 13:21:41.0110 (UTC) FILETIME=[E28DA960:01D0A5DB] X-detected-operating-system: by eggs.gnu.org: Windows 7 or 8 [fuzzy] X-Received-From: 65.55.116.40 Cc: "walt@tilera.com" , Riku Voipio , qemu-devel Subject: [Qemu-devel] [PATCH 10/10 v12] target-tilegx: Add TILE-Gx building files X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Add related configuration, make files for tilegx. Now, qemu tilegx can pass building, and finish running "Hello world" static/shared elf64 binary. 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 409edf9..befd461 100755 --- a/configure +++ b/configure @@ -5296,6 +5296,8 @@ case "$target_name" in s390x) gdb_xml_files="s390x-core64.xml s390-acr.xml s390-fpr.xml s390-vx.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