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.16-ports-merge-705-g1f51ee9


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  1f51ee9246b048d8966c36ddd2c26d7e0f927d83 (commit)
      from  6665d4a25da6dc1788010466f6f52e1df94a048b (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=1f51ee9246b048d8966c36ddd2c26d7e0f927d83

commit 1f51ee9246b048d8966c36ddd2c26d7e0f927d83
Author: Steve McIntyre <steve.mcintyre@linaro.org>
Date:   Mon Nov 19 01:22:33 2012 -0500

    Add ldconfig cache tag handling for AArch64
    
    	* sysdeps/generic/ldconfig.h (FLAG_AARCH64_LIB64): New macro.
    	* elf/cache.c (print_entry): Print ",AArch64" for
    	FLAG_AARCH64_LIB64.
    
    Signed-off-by: Steve McIntyre <steve.mcintyre@linaro.org>
    Reviewed-by: Carlos O'Donell <carlos@systemhalted.org>

diff --git a/ChangeLog b/ChangeLog
index f16eab4..63e00ed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2012-11-19  Steve McIntyre  <steve.mcintyre@linaro.org>
 
+	* sysdeps/generic/ldconfig.h (FLAG_AARCH64_LIB64): New macro.
+	* elf/cache.c (print_entry): Print ",AArch64" for
+	FLAG_AARCH64_LIB64
+
 	* sysdeps/generic/ldconfig.h (FLAG_ARM_LIBHF): New macro.
 	* elf/cache.c (print_entry): Print ",hard-float" for
 	FLAG_ARM_LIBHF.
diff --git a/elf/cache.c b/elf/cache.c
index 3336bab..f5ed370 100644
--- a/elf/cache.c
+++ b/elf/cache.c
@@ -97,6 +97,9 @@ print_entry (const char *lib, int flag, unsigned int osversion,
     case FLAG_ARM_LIBHF:
       fputs (",hard-float", stdout);
       break;
+    case FLAG_AARCH64_LIB64:
+      fputs (",AArch64", stdout);
+      break;
     case 0:
       break;
     default:
diff --git a/sysdeps/generic/ldconfig.h b/sysdeps/generic/ldconfig.h
index a805284..43cb9bd 100644
--- a/sysdeps/generic/ldconfig.h
+++ b/sysdeps/generic/ldconfig.h
@@ -35,6 +35,7 @@
 #define FLAG_MIPS64_LIBN64	0x0700
 #define FLAG_X8664_LIBX32	0x0800
 #define FLAG_ARM_LIBHF		0x0900
+#define FLAG_AARCH64_LIB64	0x0a00
 
 /* Name of auxiliary cache.  */
 #define _PATH_LDCONFIG_AUX_CACHE "/var/cache/ldconfig/aux-cache"

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

Summary of changes:
 ChangeLog                  |    4 ++++
 elf/cache.c                |    3 +++
 sysdeps/generic/ldconfig.h |    1 +
 3 files changed, 8 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]