From patchwork Fri Aug 9 14:26:16 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mihailo Stojanovic X-Patchwork-Id: 34016 Received: (qmail 88669 invoked by alias); 9 Aug 2019 14:26:24 -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 88660 invoked by uid 89); 9 Aug 2019 14:26:23 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-19.6 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 autolearn=ham version=3.3.1 spammy=ver, H*Ad:U*macro, suppose X-HELO: mail.rt-rk.com From: Mihailo Stojanovic To: libc-alpha@sourceware.org Cc: Joseph Myers , "Maciej W . Rozycki" , Carlos O'Donell , Dragan Mladjenovic , Mihailo Stojanovic Subject: [PATCH] [MIPS] Raise highest supported EI_ABIVERSION value Date: Fri, 9 Aug 2019 16:26:16 +0200 Message-Id: <1565360776-31536-1-git-send-email-mihailo.stojanovic@rt-rk.com> Hello everyone, As suggested by Joseph here [1], this bumps the highest valid ABIVERSION value for ABSOLUTE ABI, which was, I suppose, overlooked by Maciej in [2]. Cheers, Mihailo [1] https://sourceware.org/ml/libc-alpha/2019-07/msg00548.html [2] https://sourceware.org/ml/libc-alpha/2018-07/msg00131.html * sysdeps/unix/sysv/linux/mips/ldsodefs.h: Increment highest valid ABIVERSION value. --- sysdeps/unix/sysv/linux/mips/ldsodefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/unix/sysv/linux/mips/ldsodefs.h b/sysdeps/unix/sysv/linux/mips/ldsodefs.h index 8dde855..28257f8 100644 --- a/sysdeps/unix/sysv/linux/mips/ldsodefs.h +++ b/sysdeps/unix/sysv/linux/mips/ldsodefs.h @@ -34,7 +34,7 @@ extern void _dl_static_init (struct link_map *map); #undef VALID_ELF_ABIVERSION #define VALID_ELF_ABIVERSION(osabi,ver) \ (ver == 0 \ - || (osabi == ELFOSABI_SYSV && ver < 4) \ + || (osabi == ELFOSABI_SYSV && ver < 5) \ || (osabi == ELFOSABI_GNU && ver < LIBC_ABI_MAX)) #endif /* ldsodefs.h */