http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49829
--- Comment #23 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-01-25 12:01:44 UTC --- Actually, please scratch that. I was using wrong abilist command line. With: readelf -Ws $1 | sed -n '/\.symtab/,$d;/ UND /d;/@GLIBC_PRIVATE/d;/\(GLOBAL\|WEAK\|UNIQUE\)/p' | awk '{ if ($4 == "OBJECT") { printf "%s %s %s %s %s\n", $8, $4, $5, $6, $3 } else { printf "%s %s %s %s\n", $8, $4, $5, $6 }}' | LC_ALL=C sort -u it shows just that these symbols are now STB_GNU_UNIQUE while they were previously STB_GLOBAL. Not a bug therefore.