From b480b7a3f81cf49b9f3f0f8cdd20b33999aa7530 Mon Sep 17 00:00:00 2001 From: James Cowgill Date: Mon, 19 Jun 2017 21:38:40 +0200 Subject: [PATCH] Fix ELF definitions for MIPS in local-elf.h Add a check for _MIPS_SIM inside the __mips__ #elif to detect mips64el and use ELFCLASS64 in that case. Note that we can't use defined(__mips64) here because that is also defined when the n32 ABI is in use, which uses ELFCLASS32. Fixes: https://bugs.debian.org/865091 Signed-off-by: Guillem Jover --- src/local-elf.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/local-elf.h b/src/local-elf.h index 3abbe70..1faf182 100644 --- a/src/local-elf.h +++ b/src/local-elf.h @@ -127,7 +127,11 @@ #elif defined(__mips__) #define ELF_TARG_MACH EM_MIPS +#if defined(_ABI64) && _MIPS_SIM == _ABI64 +#define ELF_TARG_CLASS ELFCLASS64 +#else #define ELF_TARG_CLASS ELFCLASS32 +#endif #if defined(__MIPSEB__) #define ELF_TARG_DATA ELFDATA2MSB #else