|
Message-ID: <5f7b9d4dae46038477db7f947161629b1c249e88.1460669067.git.nsz@port70.net> Date: Wed, 20 Apr 2016 13:14:13 +0200 From: Szabolcs Nagy <nsz@...t70.net> To: musl@...ts.openwall.com Subject: [PATCH 01/12] add EM_OPENRISC again to elf.h it was changed to EM_OR1K in 200d15479c0bc48471ee7b8e538ce33af990f82e as that was meant to be the official name, but glibc and the latest gabi spec still uses the EM_OPENRISC name: http://www.sco.com/developers/gabi/latest/ch4.eheader.html binutils defines both macros so we should do the same for backward compatibility. --- include/elf.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/elf.h b/include/elf.h index 8b3cd3e..745d899 100644 --- a/include/elf.h +++ b/include/elf.h @@ -210,6 +210,7 @@ typedef struct { #define EM_MN10200 90 #define EM_PJ 91 #define EM_OR1K 92 +#define EM_OPENRISC 92 #define EM_ARC_A5 93 #define EM_XTENSA 94 #define EM_AARCH64 183 -- 2.7.2
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.