From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id EC63338582A1; Tue, 26 Jul 2022 18:54:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EC63338582A1 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc] LoongArch: Update build-many-glibcs.py for the LoongArch Port. X-Act-Checkin: glibc X-Git-Author: caiyinyu X-Git-Refname: refs/heads/master X-Git-Oldrev: 68d61026d526fff88a7ae64ccf92b3f9da189249 X-Git-Newrev: 3be5fc00ad04b89a709f79e0b008ca119c4aa01e Message-Id: <20220726185449.EC63338582A1@sourceware.org> Date: Tue, 26 Jul 2022 18:54:49 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Jul 2022 18:54:50 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=3be5fc00ad04b89a709f79e0b008ca119c4aa01e commit 3be5fc00ad04b89a709f79e0b008ca119c4aa01e Author: caiyinyu Date: Tue Jul 19 09:22:09 2022 +0800 LoongArch: Update build-many-glibcs.py for the LoongArch Port. Diff: --- scripts/build-many-glibcs.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index cc058e115c..da9b905900 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -218,6 +218,10 @@ class Context(object): os_name='linux-gnu', first_gcc_cfg=['--with-system-libunwind'], binutils_cfg=['--enable-obsolete']) + self.add_config(arch='loongarch64', + os_name='linux-gnu', + variant='lp64d', + gcc_cfg=['--with-abi=lp64d','--disable-multilib']) self.add_config(arch='m68k', os_name='linux-gnu', gcc_cfg=['--disable-multilib']) @@ -1271,6 +1275,7 @@ def install_linux_headers(policy, cmdlist): 'i686': 'x86', 'i786': 'x86', 'ia64': 'ia64', + 'loongarch64': 'loongarch', 'm68k': 'm68k', 'microblaze': 'microblaze', 'mips': 'mips',