mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 14:59:39 +02:00
Ignore elfdump warnings in scripts/extract_symvers.pl
* scripts/extract_symvers.pl: Ignore elfdump error output. From-SVN: r222117
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2015-04-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* scripts/extract_symvers.pl: Ignore elfdump error output.
|
||||
|
||||
2015-04-14 Marc Glisse <marc.glisse@inria.fr>
|
||||
|
||||
PR libstdc++/61347
|
||||
|
||||
@@ -82,7 +82,10 @@ while (<PVS>) {
|
||||
close PVS or die "pvs error";
|
||||
|
||||
# Only look at .dynsym table, like readelf in extract_symvers.
|
||||
open ELFDUMP, "/usr/ccs/bin/elfdump -s -N .dynsym $lib |" or die $!;
|
||||
# Ignore error output to avoid getting confused by
|
||||
# .gnu.version_r: zero sh_entsize information, expected 0x1
|
||||
# warning with Solaris 11 elfdump on gld-produced shared objects.
|
||||
open ELFDUMP, "/usr/ccs/bin/elfdump -s -N .dynsym $lib 2>/dev/null |" or die $!;
|
||||
while (<ELFDUMP>) {
|
||||
chomp;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user