binutils versions up through at least 2.23 have some bugs that cause
STV_HIDDEN symbols to appear in .dynsyms.
+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
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 = "";