From patchwork Thu Sep 3 01:31:05 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 513757 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 221D614029C for ; Thu, 3 Sep 2015 11:39:40 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=ykyGS9bo; dkim-atps=neutral Received: from localhost ([::1]:43245 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXJV3-00028I-BU for incoming@patchwork.ozlabs.org; Wed, 02 Sep 2015 21:39:37 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47988) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXJNO-0005zL-Vd for qemu-devel@nongnu.org; Wed, 02 Sep 2015 21:31:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZXJNN-0002KC-5M for qemu-devel@nongnu.org; Wed, 02 Sep 2015 21:31:42 -0400 Received: from mail-pa0-x230.google.com ([2607:f8b0:400e:c03::230]:36159) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXJNM-0002K1-SG for qemu-devel@nongnu.org; Wed, 02 Sep 2015 21:31:41 -0400 Received: by pacwi10 with SMTP id wi10so28706206pac.3 for ; Wed, 02 Sep 2015 18:31:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=2jTLe2pv9vpTwfstgj0WHX9BEscxbKyBfC8b1WoQBVY=; b=ykyGS9bo52WAkaHrNDyuvoUDnkHLAdJPKFPglsYQ+qJ3mbYADOs9IdJXLBjZhWLH76 P3F0uAPy/9TdBjWkmz7OYOxmXRpQjytr17hB9vmJbjCD1Ws1+jn49QUSAJW50TS3rE4v ZO1BqEechzwuNAe4Z0/5ABOzTRlVY6Zylti1fkamgVY6W4U63kxihnlYAQ5CWb0Nb0s5 GQJAIsnFbHqer6JWIcu7almNNE922ak5exJRz8A7PW27LUlLgY+iuKJj7lfSDNsZSfei G1rICAQqftFL8+M+Pbnlgbbljh4Uwl6aLhhkib1Z3OvtCRqIYTdtyAYB5CUNPLNp8heg wTIg== X-Received: by 10.68.93.133 with SMTP id cu5mr62251265pbb.71.1441243900231; Wed, 02 Sep 2015 18:31:40 -0700 (PDT) Received: from bigtime.twiddle.net (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by smtp.gmail.com with ESMTPSA id kz8sm23209851pab.6.2015.09.02.18.31.39 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 02 Sep 2015 18:31:39 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Wed, 2 Sep 2015 18:31:05 -0700 Message-Id: <1441243885-7495-14-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1441243885-7495-1-git-send-email-rth@twiddle.net> References: <1441243885-7495-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c03::230 Cc: peter.maydell@linaro.org, Chen Gang , Chen Gang Subject: [Qemu-devel] [PATCH v15 13/33] 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 From: Chen Gang Add related configuration and make files for tilegx. The target can now build, though not run anything. Signed-off-by: Chen Gang Reviewed-by: Peter Maydell Message-Id: Signed-off-by: Richard Henderson --- 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 9d24d59..ee974a6 100755 --- a/configure +++ b/configure @@ -5386,6 +5386,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