I am trying to open a C executable in lldb to make myself more comfortable with assembly.
My problem is that when i open the executable with GDB, disassembly output looks like this:
call 0x1030 <puts@plt>
And that is ok.
But when i use LLDB, output looks like this:
call 0x1030 ; stub for __lldb_unnamed_symbol67
Why does LLDB not detect the symbol name for a function stub on the PLT, but GDB does?