This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.23-570-g2c3d888


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  2c3d888304642a2241a84491eeac9344be507ea4 (commit)
      from  d957c4d3fa48d685ff2726c605c988127ef99395 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=2c3d888304642a2241a84491eeac9344be507ea4

commit 2c3d888304642a2241a84491eeac9344be507ea4
Author: Will Newton <will.newton@gmail.com>
Date:   Tue Jul 19 15:53:35 2016 +0100

    elf/elf.h: Add missing Meta relocations
    
    2016-07-19   Will Newton  <will.newton@gmail.com>
    
    	* elf/elf.h (R_METAG_REL8, R_METAG_REL16, R_METAG_TLS_GD
    	R_METAG_TLS_LDM, R_METAG_TLS_LDO_HI16, R_METAG_TLS_LDO_LO16,
    	R_METAG_TLS_LDO, R_METAG_TLS_IE, R_METAG_TLS_IENONPIC,
    	R_METAG_TLS_IENONPIC_HI16, R_METAG_TLS_IENONPIC_LO16,
    	R_METAG_TLS_LE, R_METAG_TLS_LE_HI16, R_METAG_TLS_LE_LO16): New.

diff --git a/ChangeLog b/ChangeLog
index b587b40..639630f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2016-07-19   Will Newton  <will.newton@gmail.com>
+
+	* elf/elf.h (R_METAG_REL8, R_METAG_REL16, R_METAG_TLS_GD
+	R_METAG_TLS_LDM, R_METAG_TLS_LDO_HI16, R_METAG_TLS_LDO_LO16,
+	R_METAG_TLS_LDO, R_METAG_TLS_IE, R_METAG_TLS_IENONPIC,
+	R_METAG_TLS_IENONPIC_HI16, R_METAG_TLS_IENONPIC_LO16,
+	R_METAG_TLS_LE, R_METAG_TLS_LE_HI16, R_METAG_TLS_LE_LO16): New.
+
 2016-07-18  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* sysdeps/i386/Makefile (rtld-CFLAGS): New.
diff --git a/elf/elf.h b/elf/elf.h
index 04400ec..9e59b32 100644
--- a/elf/elf.h
+++ b/elf/elf.h
@@ -3703,6 +3703,9 @@ enum
 #define R_METAG_HIOG		13
 #define R_METAG_LOOG		14
 
+#define R_METAG_REL8		15
+#define R_METAG_REL16		16
+
 /* GNU */
 #define R_METAG_GNU_VTINHERIT	30
 #define R_METAG_GNU_VTENTRY	31
@@ -3725,9 +3728,21 @@ enum
 #define R_METAG_GLOB_DAT	46
 
 /* TLS relocations */
+#define R_METAG_TLS_GD		47
+#define R_METAG_TLS_LDM		48
+#define R_METAG_TLS_LDO_HI16	49
+#define R_METAG_TLS_LDO_LO16	50
+#define R_METAG_TLS_LDO		51
+#define R_METAG_TLS_IE		52
+#define R_METAG_TLS_IENONPIC	53
+#define R_METAG_TLS_IENONPIC_HI16 54
+#define R_METAG_TLS_IENONPIC_LO16 55
 #define R_METAG_TLS_TPOFF	56
 #define R_METAG_TLS_DTPMOD	57
 #define R_METAG_TLS_DTPOFF	58
+#define R_METAG_TLS_LE		59
+#define R_METAG_TLS_LE_HI16	60
+#define R_METAG_TLS_LE_LO16	61
 
 __END_DECLS
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog |    8 ++++++++
 elf/elf.h |   15 +++++++++++++++
 2 files changed, 23 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]