From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/9930 Path: news.gmane.org!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH 10/12] add missing x86 relocs to elf.h Date: Wed, 20 Apr 2016 13:19:45 +0200 Message-ID: <0b1d7ace19b2a4c136e9e6367952473da6e83384.1460669067.git.nsz@port70.net> References: Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1461151205 19578 80.91.229.3 (20 Apr 2016 11:20:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 20 Apr 2016 11:20:05 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-9943-gllmg-musl=m.gmane.org@lists.openwall.com Wed Apr 20 13:20:05 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1asqAv-0002oO-0H for gllmg-musl@m.gmane.org; Wed, 20 Apr 2016 13:20:05 +0200 Original-Received: (qmail 15440 invoked by uid 550); 20 Apr 2016 11:20:01 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 15411 invoked from network); 20 Apr 2016 11:19:57 -0000 Mail-Followup-To: musl@lists.openwall.com Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Xref: news.gmane.org gmane.linux.lib.musl.general:9930 Archived-At: see https://sourceware.org/ml/libc-alpha/2016-01/msg00822.html --- include/elf.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/elf.h b/include/elf.h index 8da8b53..3f06de0 100644 --- a/include/elf.h +++ b/include/elf.h @@ -1045,7 +1045,8 @@ typedef struct { #define R_386_TLS_DESC_CALL 40 #define R_386_TLS_DESC 41 #define R_386_IRELATIVE 42 -#define R_386_NUM 43 +#define R_386_GOT32X 43 +#define R_386_NUM 44 @@ -2788,7 +2789,9 @@ enum #define R_X86_64_TLSDESC 36 #define R_X86_64_IRELATIVE 37 #define R_X86_64_RELATIVE64 38 -#define R_X86_64_NUM 39 +#define R_X86_64_GOTPCRELX 41 +#define R_X86_64_REX_GOTPCRELX 42 +#define R_X86_64_NUM 43 -- 2.7.2