From 0f229d8056c9b25a60d8260e1fc728b7b26c0d11 Mon Sep 17 00:00:00 2001 From: GNU Libc Maintainers Date: Sun, 25 Dec 2022 18:42:32 +0000 Subject: [PATCH] unsubmitted-ldso-machine-mismatch Gbp-Pq: Topic any Gbp-Pq: Name unsubmitted-ldso-machine-mismatch.diff --- elf/dl-load.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/elf/dl-load.c b/elf/dl-load.c index 653b3c465..5e4d10305 100644 --- a/elf/dl-load.c +++ b/elf/dl-load.c @@ -1717,6 +1717,14 @@ open_verify (const char *name, int fd, return -1; } #endif + else if (! __builtin_expect (elf_machine_matches_host (ehdr), 1)) + { + /* Another non-fatal error, let's skip right past the + the libraries obviously built for other machines. */ + __close_nocancel (fd); + __set_errno (ENOENT); + return -1; + } else if (ehdr->e_ident[EI_DATA] != byteorder) { if (BYTE_ORDER == BIG_ENDIAN) -- 2.30.2