diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-12-02 13:44:40 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-12-02 13:44:40 +0000 |
commit | eeabe8776dadea2e3cb3eb0b2d792fbc6e0ae198 (patch) | |
tree | dfac4db6a92226a1b8bb633b6f42df5890a7e2cd /elf | |
parent | 19c6b9c8abf9c3d2a3c856ebc32b5cfeb3e2affe (diff) | |
download | glibc-eeabe8776dadea2e3cb3eb0b2d792fbc6e0ae198.tar glibc-eeabe8776dadea2e3cb3eb0b2d792fbc6e0ae198.tar.gz glibc-eeabe8776dadea2e3cb3eb0b2d792fbc6e0ae198.tar.bz2 glibc-eeabe8776dadea2e3cb3eb0b2d792fbc6e0ae198.zip |
Update.
1998-12-02 Ulrich Drepper <drepper@cygnus.com>
* elf/elf.h: Add R_MIPS_JALR and adjust R_MIPS_NUM appropriately.
1998-12-02 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* inet/Versions: Remove inet6_isipv4mapped.
1998-12-02 Philip Blundell <pb@nexus.co.uk>
* inet/in6_addr.c (inet6_isipv4mapped): Obsolete, deleted.
1998-11-30 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* manual/time.texi (Formatting Date and Time): Fix typo.
1998-11-30 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/unix/sysv/linux/configure.in: Only check for symlinks
when configuring natively. Use autoconf macros instead of rolling
our own. Handle defaulted prefix.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/elf.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1196,8 +1196,9 @@ typedef struct #define R_MIPS_ADD_IMMEDIATE 34 #define R_MIPS_PJUMP 35 #define R_MIPS_RELGOT 36 +#define R_MIPS_JALR 37 /* Keep this the last entry. */ -#define R_MIPS_NUM 37 +#define R_MIPS_NUM 38 /* Legal values for p_type field of Elf32_Phdr. */ @@ -1489,11 +1490,11 @@ typedef Elf32_Addr Elf32_Conflict; /* ARM-specific values for sh_flags */ #define SHF_ARM_ENTRYSECT 0x10000000 /* Section contains an entry point */ -#define SHF_ARM_COMDEF 0x80000000 /* Section may be multiply defined +#define SHF_ARM_COMDEF 0x80000000 /* Section may be multiply defined in the input to a link step */ /* ARM-specific program header flags */ -#define PF_ARM_SB 0x10000000 /* Segment contains the location +#define PF_ARM_SB 0x10000000 /* Segment contains the location addressed by the static base */ /* ARM relocs. */ |