Home | History | Annotate | Download | only in contrib

Lines Matching refs:elfdump

15 # It uses elfdump when present (native), GNU readelf otherwise.
53 # so use elfdump -s in the native case and GNU readelf -s otherwise.
57 # The path to elfdump.
58 my $elfdump = "/usr/ccs/bin/elfdump";
60 if (-f $elfdump) {
61 open ELFDUMP,$elfdump.' -s '.(join ' ',@OBJECTS).'|' or die $!;
64 while (<ELFDUMP>) {
110 close ELFDUMP or die "$elfdump error";