From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/9922 Path: news.gmane.org!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH 02/12] add new powerpc64 relocations to elf.h Date: Wed, 20 Apr 2016 13:14:53 +0200 Message-ID: <23e3f4351c68c0e7235a5b2e1cc72678a144e668.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 1461150915 14987 80.91.229.3 (20 Apr 2016 11:15:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 20 Apr 2016 11:15:15 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-9935-gllmg-musl=m.gmane.org@lists.openwall.com Wed Apr 20 13:15:13 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 1asq6C-00089N-VK for gllmg-musl@m.gmane.org; Wed, 20 Apr 2016 13:15:13 +0200 Original-Received: (qmail 6108 invoked by uid 550); 20 Apr 2016 11:15:11 -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 6067 invoked from network); 20 Apr 2016 11:15:05 -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:9922 Archived-At: following the corresponding binutils and glibc changes https://sourceware.org/ml/binutils/2013-10/msg00372.html --- include/elf.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/elf.h b/include/elf.h index 745d899..55d8cb2 100644 --- a/include/elf.h +++ b/include/elf.h @@ -2014,6 +2014,15 @@ typedef Elf32_Addr Elf32_Conflict; #define R_PPC64_DTPREL16_HIGHERA 104 #define R_PPC64_DTPREL16_HIGHEST 105 #define R_PPC64_DTPREL16_HIGHESTA 106 +#define R_PPC64_TLSGD 107 +#define R_PPC64_TLSLD 108 +#define R_PPC64_TOCSAVE 109 +#define R_PPC64_ADDR16_HIGH 110 +#define R_PPC64_ADDR16_HIGHA 111 +#define R_PPC64_TPREL16_HIGH 112 +#define R_PPC64_TPREL16_HIGHA 113 +#define R_PPC64_DTPREL16_HIGH 114 +#define R_PPC64_DTPREL16_HIGHA 115 #define R_PPC64_JMP_IREL 247 -- 2.7.2