From patchwork Thu Dec 20 03:02:47 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?5q+b5pmX?= X-Patchwork-Id: 1016492 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-98636-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=c-sky.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="qyMg4tGN"; 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 43KxTN0wJDz9s3q for ; Thu, 20 Dec 2018 14:05:27 +1100 (AEDT) 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:in-reply-to:references; q=dns; s=default; b=fReHKxP4 D2mYVw9gvmKxa3Dq0DkN6dhGdNePChWgrN0XF+6evqhinp5SkncGqc8N2Pylw5Vk jzUFwP4IWix4q3bk/0QNEugz+nDmunzzXnE0bwrmiN6tljwgtGEObs7m9hjW3v3h YhRlpMhQIinXQWO9KXtoZYABHQtgzrn/sJI= 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:in-reply-to:references; s=default; bh=godqBMd3Pje3Yw M5/+iP8XKqf5U=; b=qyMg4tGNHSPa7bljBmoIiYsDMVCs5KOLUuCWLg+i9mc8GA zJ2/RfwOUvhJefDF3tG2vjGKbHIs5jG0UpoOA6EsalzBYDbzQC9r39MfUR2/zUSb I7N3zSIGRbi9ZKc+Z2vzOiZZgac4mzQP223z4VhaBVwO5pd2sxwcDsqh20Ajg= Received: (qmail 103008 invoked by alias); 20 Dec 2018 03:04:11 -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 102766 invoked by uid 89); 20 Dec 2018 03:04:09 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, FSL_HELO_NON_FQDN_1, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY autolearn=ham version=3.3.2 spammy=Hx-languages-length:981, H*r:Unknown X-HELO: vmh-VirtualBox From: Mao Han To: libc-alpha@sourceware.org Cc: c-sky_gcc_upstream@c-sky.com, gnu-csky@mentor.com, Mao Han Subject: [PATCH v8 11/12] C-SKY: Add build-many-glibcs.py support Date: Thu, 20 Dec 2018 11:02:47 +0800 Message-Id: <3aa372e0d8f017f841c48a6d20e2da7e16c8eddc.1545194586.git.han_mao@c-sky.com> In-Reply-To: References: In-Reply-To: References: * scripts/build-many-glibcs.py: Add C-SKY targets --- scripts/build-many-glibcs.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 9051ff1..e0cdb69 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -181,6 +181,13 @@ class Context(object): variant='be8', gcc_cfg=['--with-float=hard', '--with-arch=armv7-a', '--with-fpu=vfpv3']) + self.add_config(arch='csky', + os_name='linux-gnuabiv2', + variant='soft', + gcc_cfg=['--disable-multilib']) + self.add_config(arch='csky', + os_name='linux-gnuabiv2', + gcc_cfg=['--with-float=hard', '--disable-multilib']) self.add_config(arch='hppa', os_name='linux-gnu') self.add_config(arch='i686', @@ -1260,6 +1267,7 @@ class Config(object): arch_map = {'aarch64': 'arm64', 'alpha': 'alpha', 'arm': 'arm', + 'csky': 'csky', 'hppa': 'parisc', 'i486': 'x86', 'i586': 'x86',