[PATCH] [MIPS] Raise highest supported EI_ABIVERSION value
Mihailo Stojanovic
mihailo.stojanovic@rt-rk.com
Fri Aug 9 14:26:00 GMT 2019
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 */
--
2.7.4
More information about the Libc-alpha
mailing list