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 roland/abilist-hidden created. glibc-2.19-185-g7f8dced


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, roland/abilist-hidden has been created
        at  7f8dcedff7980f871ac84a9a2a29d235b33cfe95 (commit)

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

commit 7f8dcedff7980f871ac84a9a2a29d235b33cfe95
Author: Roland McGrath <roland@hack.frob.com>
Date:   Mon Mar 17 16:01:00 2014 -0700

    Omit hidden symbols from .symlist files.

diff --git a/ChangeLog b/ChangeLog
index c7e121d..7bc8890 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-03-17  Roland McGrath  <roland@hack.frob.com>
+
+	* scripts/abilist.awk: Ignore symbols marked with .hidden.
+
 2014-03-17  Joseph Myers  <joseph@codesourcery.com>
 
 	* math/libm-test.inc (nearbyint_test_data): Include all tests used
diff --git a/scripts/abilist.awk b/scripts/abilist.awk
index 6d58f66..52b5b32 100644
--- a/scripts/abilist.awk
+++ b/scripts/abilist.awk
@@ -48,6 +48,10 @@ $2 == "g" || $2 == "w" && (NF == 7 || NF == 8) {
   symbol = $NF;
   gsub(/[()]/, "", version);
 
+  # binutils versions up through at least 2.23 have some bugs that
+  # caused STV_HIDDEN symbols to appear in .dynsym, though that is useless.
+  if (NF > 7 && $7 == ".hidden") next;
+
   if (version == "GLIBC_PRIVATE") next;
 
   desc = "";

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


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]