Date: Thu, 16 Jan 2014 21:50:27 +0000 (UTC) From: Kai Wang <kaiw@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r260793 - projects/elftoolchain/sys/sys Message-ID: <201401162150.s0GLoRAP016818@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kaiw Date: Thu Jan 16 21:50:26 2014 New Revision: 260793 URL: http://svnweb.freebsd.org/changeset/base/260793 Log: Define SHT_GNU_LIBLIST and R_MIPS_64, which is needed for libelf and libdwarf. Modified: projects/elftoolchain/sys/sys/elf_common.h Modified: projects/elftoolchain/sys/sys/elf_common.h ============================================================================== --- projects/elftoolchain/sys/sys/elf_common.h Thu Jan 16 21:47:27 2014 (r260792) +++ projects/elftoolchain/sys/sys/elf_common.h Thu Jan 16 21:50:26 2014 (r260793) @@ -280,6 +280,7 @@ typedef struct { #define SHT_SUNW_cap 0x6ffffff5 #define SHT_SUNW_SIGNATURE 0x6ffffff6 #define SHT_GNU_HASH 0x6ffffff6 +#define SHT_GNU_LIBLIST 0x6ffffff7 #define SHT_SUNW_ANNOTATE 0x6ffffff7 #define SHT_SUNW_DEBUGSTR 0x6ffffff8 #define SHT_SUNW_DEBUG 0x6ffffff9 @@ -769,6 +770,7 @@ typedef struct { #define R_MIPS_PC16 10 /* PC relative 16 bit */ #define R_MIPS_CALL16 11 /* 16 bit GOT entry for function */ #define R_MIPS_GPREL32 12 /* GP relative 32 bit */ +#define R_MIPS_64 18 /* Direct 64 bit */ #define R_MIPS_GOTHI16 21 /* GOT HI 16 bit */ #define R_MIPS_GOTLO16 22 /* GOT LO 16 bit */ #define R_MIPS_CALLHI16 30 /* upper 16 bit GOT entry for function */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401162150.s0GLoRAP016818>