Tool/software: Linux
My application program contains a shared library,a .so file.And it runs in an embedded linux system running in ARM Cortex-A9.How can I debug it?
When I used the gdb method to debug it,I got the following message:
warning: Unable to find dynamic linker breakpoint function.
GDB will be unable to debug shared library initializers
and track explicitly loaded dynamic code.
0x498c0c80 in ?? ()
Does it mean that I can't debug the application using shared library?
Thank you very much!