From patchwork Mon Sep 14 22:43:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 517587 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 66DB2140082 for ; Tue, 15 Sep 2015 08:46:43 +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=XQNs/Ej1; dkim-atps=neutral Received: from localhost ([::1]:43883 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbcWG-0001My-Md for incoming@patchwork.ozlabs.org; Mon, 14 Sep 2015 18:46:40 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43190) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbcTd-0005LP-Te for qemu-devel@nongnu.org; Mon, 14 Sep 2015 18:43:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZbcTd-00039C-0o for qemu-devel@nongnu.org; Mon, 14 Sep 2015 18:43:57 -0400 Received: from mail-pa0-x234.google.com ([2607:f8b0:400e:c03::234]:35754) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbcTc-00038n-Pk for qemu-devel@nongnu.org; Mon, 14 Sep 2015 18:43:56 -0400 Received: by pacfv12 with SMTP id fv12so158894266pac.2 for ; Mon, 14 Sep 2015 15:43:56 -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=fXEd3DuG6zZ3mEJrHst9UyZPSiaC8Twp0maHOOnBg5M=; b=XQNs/Ej1F/n7DQN7yIHpoc+41KJuADR+epB8opAeixrlwxdctbnYEU7B1fxQBNBpnx lko3abmB+fH3l0o7/q6ZT5ruKiix9ob2XWn9ofkiTnxaie7Giovx4dJhYVG6YHInAiFZ SQ9iRKVcl9nQoLydjaVeQy4wPgYSLj/9e2fKmFyaRXIf+YNkaUIdP/4j4HVSvyZdhTKk Mo/Rym6o+tOHgXLorfdD6/t5fPGkLEHuxoRZpZbqEnar9lAkYOZv5aVLfK/Q6QyxXXFb Ql4lCxTD9D2/9SuHEBQXxB4qQVgvx91IxMUqlTYpNA4elMM8zmJA1lbILizntQukQbm8 +ZtA== X-Received: by 10.68.192.70 with SMTP id he6mr23914970pbc.157.1442270636125; Mon, 14 Sep 2015 15:43:56 -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 fd9sm18219832pab.34.2015.09.14.15.43.55 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 14 Sep 2015 15:43:55 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Mon, 14 Sep 2015 15:43:20 -0700 Message-Id: <1442270622-8955-14-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1442270622-8955-1-git-send-email-rth@twiddle.net> References: <1442270622-8955-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::234 Cc: peter.maydell@linaro.org, Chen Gang , Chen Gang Subject: [Qemu-devel] [PATCH v16 13/35] 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 d7c24cd..2225c39 100755 --- a/configure +++ b/configure @@ -5450,6 +5450,8 @@ case "$target_name" in s390x) gdb_xml_files="s390x-core64.xml s390-acr.xml s390-fpr.xml s390-vx.xml s390-cr.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