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-824-ga915e17


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  a915e17fe7413624a8e8ce39336cad3c53b87a7a (commit)
       via  ba835e107481a8144987d851e5b8b22dc9345206 (commit)
      from  931ed9559b9717aafecc057e6ced05f4ac4bcfaf (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=a915e17fe7413624a8e8ce39336cad3c53b87a7a

commit a915e17fe7413624a8e8ce39336cad3c53b87a7a
Author: Marcus Shawcroft <marcus.shawcroft@linaro.org>
Date:   Tue Dec 4 12:18:03 2012 +0000

    aarch64: Tag ARM libc6-dependent libraries with FLAG_ELF_LIBC6
    
            * sysdeps/unix/sysv/linux/aarch64/ldconfig.h: Add entries
            for /lib/ld-linux.so.3 and /lib/ld-linux-armhf.so.3.
    
    Signed-off-by: Steve McIntyre <steve.mcintyre@linaro.org>

diff --git a/ports/ChangeLog.aarch64 b/ports/ChangeLog.aarch64
index 2329652..85d7386 100644
--- a/ports/ChangeLog.aarch64
+++ b/ports/ChangeLog.aarch64
@@ -1,5 +1,10 @@
 2012-12-04  Steve McIntyre <steve.mcintyre@linaro.org>
 
+	* sysdeps/unix/sysv/linux/aarch64/ldconfig.h: Add entries
+        for /lib/ld-linux.so.3 and /lib/ld-linux-armhf.so.3.
+
+2012-12-04  Steve McIntyre <steve.mcintyre@linaro.org>
+
         * sysdeps/unix/sysv/linux/aarch64/readelflib.c: New file.
 
 2012-11-29  Steve McIntyre <steve.mcintyre@linaro.org>
diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h b/ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h
index 4c1af06..d0517d8 100644
--- a/ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h
+++ b/ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h
@@ -19,7 +19,9 @@
 #include <sysdeps/generic/ldconfig.h>
 
 #define SYSDEP_KNOWN_INTERPRETER_NAMES \
-  { "/lib/ld-linux-aarch64.so.1", FLAG_ELF_LIBC6 },
+  { "/lib/ld-linux-aarch64.so.1", FLAG_ELF_LIBC6 }, \
+  { "/lib/ld-linux.so.3", FLAG_ELF_LIBC6 }, \
+  { "/lib/ld-linux-armhf.so.3", FLAG_ELF_LIBC6 },
 #define SYSDEP_KNOWN_LIBRARY_NAMES \
   { "libc.so.6", FLAG_ELF_LIBC6 },	\
   { "libm.so.6", FLAG_ELF_LIBC6 },

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=ba835e107481a8144987d851e5b8b22dc9345206

commit ba835e107481a8144987d851e5b8b22dc9345206
Author: Marcus Shawcroft <marcus.shawcroft@linaro.org>
Date:   Tue Dec 4 12:16:02 2012 +0000

    aarch64: Tag ARM and AArch64 binaries in the ldconfig cache
    
    Add the correct tags for ARM and AArch64 libraries in the ldconfig
    cache for AArch64.
    
    Signed-off-by: Steve McIntyre <steve.mcintyre@linaro.org>

diff --git a/ports/ChangeLog.aarch64 b/ports/ChangeLog.aarch64
index eac41e5..2329652 100644
--- a/ports/ChangeLog.aarch64
+++ b/ports/ChangeLog.aarch64
@@ -1,3 +1,7 @@
+2012-12-04  Steve McIntyre <steve.mcintyre@linaro.org>
+
+        * sysdeps/unix/sysv/linux/aarch64/readelflib.c: New file.
+
 2012-11-29  Steve McIntyre <steve.mcintyre@linaro.org>
 
 	* sysdeps/unix/sysv/linux/aarch64/dl-cache.h: New file.
diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/readelflib.c b/ports/sysdeps/unix/sysv/linux/aarch64/readelflib.c
new file mode 100644
index 0000000..87994a4
--- /dev/null
+++ b/ports/sysdeps/unix/sysv/linux/aarch64/readelflib.c
@@ -0,0 +1,18 @@
+/* Copyright (C) 2012 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#include "../arm/readelflib.c"

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

Summary of changes:
 ports/ChangeLog.aarch64                            |    9 +++++++++
 ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h   |    4 +++-
 .../sysdeps/unix/sysv/linux/aarch64/readelflib.c   |    9 +--------
 3 files changed, 13 insertions(+), 9 deletions(-)
 copy sysdeps/x86_64/tst-quad1.c => ports/sysdeps/unix/sysv/linux/aarch64/readelflib.c (92%)


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]