* common.h: Formatting, typo fixes.
(DT_ENCODING): Correct value. * common.h (ELFOSABI_AROS): Define. (ELFOSABI_OPENVMS): Likewise. (ELFOSABI_NSK): Likewise.
This commit is contained in:
parent
c3e92877a9
commit
8c228f4b0f
|
@ -1,3 +1,14 @@
|
||||||
|
2003-01-17 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* common.h: Formatting.
|
||||||
|
(DT_ENCODING): Correct value.
|
||||||
|
|
||||||
|
2003-01-17 Fabio Alemagna <falemagn@aros.org>
|
||||||
|
|
||||||
|
* common.h (ELFOSABI_AROS): Define.
|
||||||
|
(ELFOSABI_OPENVMS): Likewise.
|
||||||
|
(ELFOSABI_NSK): Likewise.
|
||||||
|
|
||||||
2003-01-16 Alan Modra <amodra@bigpond.net.au>
|
2003-01-16 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* ppc.h: Split out ppc64 definitions to..
|
* ppc.h: Split out ppc64 definitions to..
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* ELF support for BFD.
|
/* ELF support for BFD.
|
||||||
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
|
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
|
||||||
2001, 2002
|
2001, 2002, 2003
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
|
|
||||||
Written by Fred Fish @ Cygnus Support, from information published
|
Written by Fred Fish @ Cygnus Support, from information published
|
||||||
|
@ -71,8 +71,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
#define ELFOSABI_TRU64 10 /* TRU64 UNIX */
|
#define ELFOSABI_TRU64 10 /* TRU64 UNIX */
|
||||||
#define ELFOSABI_MODESTO 11 /* Novell Modesto */
|
#define ELFOSABI_MODESTO 11 /* Novell Modesto */
|
||||||
#define ELFOSABI_OPENBSD 12 /* OpenBSD */
|
#define ELFOSABI_OPENBSD 12 /* OpenBSD */
|
||||||
#define ELFOSABI_STANDALONE 255 /* Standalone (embedded) application */
|
#define ELFOSABI_OPENVMS 13 /* OpenVMS */
|
||||||
|
#define ELFOSABI_NSK 14 /* Hewlett-Packard Non-Stop Kernel */
|
||||||
|
#define ELFOSABI_AROS 15 /* Amiga Research OS */
|
||||||
#define ELFOSABI_ARM 97 /* ARM */
|
#define ELFOSABI_ARM 97 /* ARM */
|
||||||
|
#define ELFOSABI_STANDALONE 255 /* Standalone (embedded) application */
|
||||||
|
|
||||||
#define EI_ABIVERSION 8 /* ABI version */
|
#define EI_ABIVERSION 8 /* ABI version */
|
||||||
|
|
||||||
|
@ -105,7 +108,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
#define EM_860 7 /* Intel 80860 */
|
#define EM_860 7 /* Intel 80860 */
|
||||||
#define EM_MIPS 8 /* MIPS R3000 (officially, big-endian only) */
|
#define EM_MIPS 8 /* MIPS R3000 (officially, big-endian only) */
|
||||||
#define EM_S370 9 /* IBM System/370 */
|
#define EM_S370 9 /* IBM System/370 */
|
||||||
#define EM_MIPS_RS3_LE 10 /* MIPS R3000 little-endian (Oct 4 1999 Draft)*/ /* Depreciated */
|
#define EM_MIPS_RS3_LE 10 /* MIPS R3000 little-endian (Oct 4 1999 Draft) Deprecated */
|
||||||
|
|
||||||
#define EM_PARISC 15 /* HPPA */
|
#define EM_PARISC 15 /* HPPA */
|
||||||
|
|
||||||
|
@ -203,7 +206,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
/* Old version of PowerPC, this should be removed shortly. */
|
/* Old version of PowerPC, this should be removed shortly. */
|
||||||
#define EM_PPC_OLD 17
|
#define EM_PPC_OLD 17
|
||||||
|
|
||||||
/* (Depreciated) Temporary number for the OpenRISC processor. */
|
/* (Deprecated) Temporary number for the OpenRISC processor. */
|
||||||
#define EM_OR32 0x8472
|
#define EM_OR32 0x8472
|
||||||
|
|
||||||
/* Cygnus M32R ELF backend. Written in the absence of an ABI. */
|
/* Cygnus M32R ELF backend. Written in the absence of an ABI. */
|
||||||
|
@ -513,8 +516,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
#define DT_FINI_ARRAYSZ 28
|
#define DT_FINI_ARRAYSZ 28
|
||||||
#define DT_RUNPATH 29
|
#define DT_RUNPATH 29
|
||||||
#define DT_FLAGS 30
|
#define DT_FLAGS 30
|
||||||
|
#define DT_ENCODING 31
|
||||||
#define DT_ENCODING 32
|
|
||||||
#define DT_PREINIT_ARRAY 32
|
#define DT_PREINIT_ARRAY 32
|
||||||
#define DT_PREINIT_ARRAYSZ 33
|
#define DT_PREINIT_ARRAYSZ 33
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue