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.27.9000-499-gf6299d2


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  f6299d2a103efc46d8f75834f1e38f3eda9f4fcb (commit)
      from  61ab61c2fdf23875a473281d9711ae35473d93f7 (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=f6299d2a103efc46d8f75834f1e38f3eda9f4fcb

commit f6299d2a103efc46d8f75834f1e38f3eda9f4fcb
Author: Vincent Chen <vincentc@andestech.com>
Date:   Thu Jun 21 20:44:43 2018 +0000

    Add Andes nds32 dynamic relocations to elf.h
    
    	* elf/elf.h (R_NDS32_NONE): New define.
    	(R_NDS32_32_RELA): Likewise.
    	(R_NDS32_COPY): Likewise.
    	(R_NDS32_GLOB_DAT): Likewise.
    	(R_NDS32_JUMP_SLOT): Likewise.
    	(R_NDS32_RELATIVE): Likewise.
    	(R_NDS32_TLS_TPOFF): Likewise.
    	(R_NDS32_TLS_DESC): Likewise.

diff --git a/ChangeLog b/ChangeLog
index 0353030..e54d754 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2018-06-21  Vincent Chen  <vincentc@andestech.com>
+
+	* elf/elf.h (R_NDS32_NONE): New define.
+	(R_NDS32_32_RELA): Likewise.
+	(R_NDS32_COPY): Likewise.
+	(R_NDS32_GLOB_DAT): Likewise.
+	(R_NDS32_JUMP_SLOT): Likewise.
+	(R_NDS32_RELATIVE): Likewise.
+	(R_NDS32_TLS_TPOFF): Likewise.
+	(R_NDS32_TLS_DESC): Likewise.
+
 2018-06-21  Mark Wielaard  <mark@klomp.org>
 
 	* elf/elf.h (R_BPF_MAP_FD): Removed.
diff --git a/elf/elf.h b/elf/elf.h
index 75043bc..7e2b072 100644
--- a/elf/elf.h
+++ b/elf/elf.h
@@ -3915,6 +3915,16 @@ enum
 #define R_METAG_TLS_LE_HI16	60
 #define R_METAG_TLS_LE_LO16	61
 
+/* NDS32 relocations.  */
+#define R_NDS32_NONE		0
+#define R_NDS32_32_RELA 	20
+#define R_NDS32_COPY		39
+#define R_NDS32_GLOB_DAT	40
+#define R_NDS32_JMP_SLOT	41
+#define R_NDS32_RELATIVE	42
+#define R_NDS32_TLS_TPOFF	102
+#define R_NDS32_TLS_DESC	119
+
 __END_DECLS
 
 #endif	/* elf.h */

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

Summary of changes:
 ChangeLog |   11 +++++++++++
 elf/elf.h |   10 ++++++++++
 2 files changed, 21 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]