From patchwork Sat Jun 29 15:41:29 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vincent Chen X-Patchwork-Id: 1124803 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-103363-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=andestech.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="UGToJZgu"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 45bdGj0dGzz9s4V for ; Sun, 30 Jun 2019 01:44:12 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-type; q=dns; s=default; b=BHrPr QQD3wpDBYHNkGd1UeKp8aEgOe54z2/H+5TWnJ3b8ZGDXbQ0HU8VAt6EIH+aeNmu9 ncu+wTrh/jFVoJSZ82WeIvfRmFQi3oIywiE3baM5+aDPlPSVpgYIFEDvrWWHga/3 TD/sX95vbCwXE/8iJqn+qxldR5VkwSWAs+S2dE= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-type; s=default; bh=l77o7atyx/Y OTwMei+GGnY5/7fE=; b=UGToJZguA319cTdvPK90YvpmOq3Ku6sk6LyDlOP7PL7 12kolVXuOevGJXCIRuAEylVWk6PGcs7K1lbHo1SrFNlBfO03eZCWvWHK1ZfNZREb hdcMKLLspny5qSp2+f8X0GdhO2zEF11ZV0PTiHZ4N3ZxLFFW/rdVeD/BVwLB64vo = Received: (qmail 101192 invoked by alias); 29 Jun 2019 15:42:52 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 101143 invoked by uid 89); 29 Jun 2019 15:42:52 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-23.2 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RDNS_DYNAMIC, SPF_PASS, TVD_RCVD_IP autolearn=ham version=3.3.1 spammy= X-HELO: ATCSQR.andestech.com From: Vincent Chen To: , CC: , Subject: [PATCH v6 10/11] Add nds32 port to build-many-glibcs.py Date: Sat, 29 Jun 2019 23:41:29 +0800 Message-ID: <1561822890-23219-11-git-send-email-vincentc@andestech.com> In-Reply-To: <1561822890-23219-1-git-send-email-vincentc@andestech.com> References: <1561822890-23219-1-git-send-email-vincentc@andestech.com> MIME-Version: 1.0 X-DNSRBL: X-MAIL: ATCSQR.andestech.com x5TFYSWA032453 From: CheWei Chunang 2019-06-29 Vincent Chen 2019-06-29 CheWei Chuang * scripts/build-many-glibcs.py (Context): Add nds32 targets. --- scripts/build-many-glibcs.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index c5821df..a64a19f 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -299,6 +299,12 @@ class Context(object): 'ccopts': '-mabi=32'}, {'variant': 'n64-nan2008-soft', 'ccopts': '-mabi=64'}]) + self.add_config(arch='nds32le', + os_name='linux-gnu', + variant='v3', + gcc_cfg=['--with-arch=v3', '--with-cpu=n13', + '--enable-default-relax=no', + '--disable-multilib']) self.add_config(arch='nios2', os_name='linux-gnu') self.add_config(arch='powerpc', @@ -1269,6 +1275,7 @@ class Config(object): 'm68k': 'm68k', 'microblaze': 'microblaze', 'mips': 'mips', + 'nds32': 'nds32', 'nios2': 'nios2', 'powerpc': 'powerpc', 's390': 's390',