Displaying 1 result from an estimated 1 matches for "bfd_is_local_label_nam".
Did you mean:
bfd_is_local_label_name
2015 Sep 18
5
Fwd: Skipping names of temporary symbols increased size of ARM binaries.
...symbols get through to the final binary:
readelf -s main.out
Num: Value Size Type Bind Vis Ndx Name
73: 0000006e 0 NOTYPE LOCAL DEFAULT 32
The linker can't decide if the labels are the local ones to be left out not
seeing their names. Its bfd_is_local_label_name function returns false and
the labels are not skipped.
Before r236642 the names were inserted into object files:
readelf -s main.o
Num: Value Size Type Bind Vis Ndx Name
23: 0000007a 0 NOTYPE LOCAL DEFAULT 9 .Linfo_string7
bfd_is_local_label_n...