I wanted to step into the code of ld.so whenever it will be used in my normal c
code.
I am trying to code flow through GDB in the TUI mode where you can see both source code and assembly as you step over the code.
For this I also installed libc-dbg
binutils-source
package from ubuntu package manager.
GDB can find the debug symbols for the ld.so
itself and I can step at the instruction level that is using si
but I cant step at the source level as GDB is not able to find the source for ld.so
and shows NO Source Available
.
How can I make GDB find the source for ld.so
so that I can also see which line in the ld.so
source is actually being executed.
I am using Ubuntu 12.10
64bit with GCC 4.8.2