This is the mail archive of the binutils@sourceware.org mailing list for the binutils 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]

Multiple symbol with same name?


Hi devs,

Consider following test case:
$cat test.c
extern int print();
extern int xprint();
int main()
{
print();
xprint();
return 0;
}

$ gcc -c test.c
$nm test.o
0000000000000000 T main
                 U print
                 U xprint

$objcopy --redefine-sym print=xprint test.o
$nm test.o
0000000000000000 T main
                 U xprint
                 U xprint

As you can see there is  the two symbols with same name "xprint"  and in
this case the  objcopy should had  merged the xprint in the symbol table
to one instance (provided both  has same symbol attributes ) .

Is that bug in the objcopy utility or do we are missing something here ?

Thank you
Kamlesh


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