From patchwork Mon Jan 2 22:14:21 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 18765 Received: (qmail 5325 invoked by alias); 2 Jan 2017 22:14:40 -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 5281 invoked by uid 89); 2 Jan 2017 22:14:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy=powerpc32 X-HELO: relay1.mentorg.com Date: Mon, 2 Jan 2017 22:14:21 +0000 From: Joseph Myers To: Subject: Add build-many-glibcs.py powerpc-linux-gnu-power4 build [committed] Message-ID: User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) The 32-bit powerpc configurations in build-many-glibcs.py were failing to cover the powerpc32 multiarch code at all, because that code is only built for power4 and above configurations. This patch adds a 32-bit power4 configuration so that at least some of that multiarch code gets build-tested. (This is preparation for reviewing the w_* file renaming, which affects such powerpc32 multiarch files.) Committed. 2017-01-02 Joseph Myers * scripts/build-many-glibcs.py (Context.add_all_configs): Add power4 glibc for powerpc-linux-gnu. diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 9ca9236..60a7874 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -268,7 +268,10 @@ class Context(object): os_name='linux-gnu') self.add_config(arch='powerpc', os_name='linux-gnu', - gcc_cfg=['--disable-multilib', '--enable-secureplt']) + gcc_cfg=['--disable-multilib', '--enable-secureplt'], + extra_glibcs=[{'variant': 'power4', + 'ccopts': '-mcpu=power4', + 'cfg': ['--with-cpu=power4']}]) self.add_config(arch='powerpc', os_name='linux-gnu', variant='soft',