From patchwork Wed Jan 24 23:49:31 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 25505 Received: (qmail 128097 invoked by alias); 24 Jan 2018 23:49:38 -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 127416 invoked by uid 89); 24 Jan 2018 23:49:37 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.5 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy= X-HELO: relay1.mentorg.com Date: Wed, 24 Jan 2018 23:49:31 +0000 From: Joseph Myers To: Subject: Add soft-float ColdFire to build-many-glibcs.py [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) Since it turns out soft-float ColdFire has a different glibc ABI to hard-float ColdFire, as well as various differences in which glibc code gets built, this patch adds such a configuration to build-many-glibcs.py to (hopefully) complete the set of ABIs being tested. (Note that the build for soft-float ColdFire is currently broken even with GCC mainline - I have a glibc patch to fix this, but it needs before-and-after build-many-glibcs.py comparison of stripped binaries for all configurations before being committed.) Committed. 2018-01-24 Joseph Myers * scripts/build-many-glibcs.py (Context.add_all_configs): Add soft-float ColdFire configuration. diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 6095584..28c04e6 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -205,6 +205,11 @@ class Context(object): os_name='linux-gnu', variant='coldfire', gcc_cfg=['--with-arch=cf', '--disable-multilib']) + self.add_config(arch='m68k', + os_name='linux-gnu', + variant='coldfire-soft', + gcc_cfg=['--with-arch=cf', '--with-cpu=54455', + '--disable-multilib']) self.add_config(arch='microblaze', os_name='linux-gnu', gcc_cfg=['--disable-multilib'])