Message ID | 20140317230135.5323474466@topped-with-meat.com |
---|---|
State | New |
Headers | show |
On Mon, Mar 17, 2014 at 04:01:35PM -0700, Roland McGrath wrote: > Alternatively, we could make abilist.awk ignore hidden symbols. > A change for that is on roland/abilist-hidden and below, but > I don't have time to test it today. If it works and you like it, > just merge the branch. I have tested and pushed your patch. Siddhesh
--- 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 = "";