This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC 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]

[Bug bootstrap/49829] [4.7 Regression] --disable-static --enable-shared regression: cannot find -lstdc++


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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]