unexpected PLT reloc type 0x00
Dear Friends,
This mail is very urgent for me .I am cross compiling a Dynamic
library on RH Linux 7.2 using arm-linux-gcc.
It compiled successfully.But when I link it & execute the
application it gives the following error
'unexpected PLT reloc type 0x00'
Can any body help me what should i do..Its very very urgent for
me..
Sachin
I am using following way to make .so file
CC=arm-linux-gcc
CFLAGS=-g
all: abc.o bcd.o def.so
def.so:abc.o bcd.o
$(CC) -shared -o $@ $^
.c.o:
$(CC) -c $(CFLAGS) -fpic -o $a $<
|