diff options
author | Roland McGrath <roland@hack.frob.com> | 2014-03-18 07:44:00 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-03-18 22:04:04 +0530 |
commit | c8f8fa150490ff7d08d3ea8bd9c6dda7d63e2103 (patch) | |
tree | c1bac2bd8eda4c934ca1607b7616d064e9e690b2 | |
parent | fdbe8eae2b9aed74dabba1b0a189c5d7d61bf032 (diff) | |
download | glibc-c8f8fa150490ff7d08d3ea8bd9c6dda7d63e2103.zip glibc-c8f8fa150490ff7d08d3ea8bd9c6dda7d63e2103.tar.gz glibc-c8f8fa150490ff7d08d3ea8bd9c6dda7d63e2103.tar.bz2 |
Work around binutils bugs in 2.23 and older
binutils versions up through at least 2.23 have some bugs that cause
STV_HIDDEN symbols to appear in .dynsyms.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | scripts/abilist.awk | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2014-03-18 Roland McGrath <roland@hack.frob.com> + + * scripts/abilist.awk: Ignore symbols marked with .hidden. + 2014-03-18 Will Newton <will.newton@linaro.org> * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Remove 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 = ""; |