Дизассемблирование c программой с ошибкой gdb get
Когда я разбираю программу c с помощью gdb, я получаю сообщение об ошибке. Я погуглил это, но никакого результата не нашел, что я хочу. Кто-нибудь может мне помочь?
мой документ first.asm:
global main
main:
mov eax, 1
mov ebx, 2
add eax, ebx
ret
root@kali-linux:~/my-document/test# gdb ./first
GNU gdb (Debian 7.12-6) 7.12.0.20161007-git
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show
copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from ./first...(no debugging symbols found)...done.
(gdb) set disassembly-flavor intel
(gdb) disas main
Dump of assembler code for function main:
0x000004f0 <+0>: mov eax,0x1
0x000004f5 <+5>: mov ebx,0x2
0x000004fa <+10>: add eax,ebx
0x000004fc <+12>: ret
0x000004fd <+13>: xchg ax,ax
0x000004ff <+15>: nop
End of assembler dump.
(gdb) break *0x000004fa
Breakpoint 1 at 0x4fa
(gdb) run
Starting program: /root/my-document/test/first
Warning:
Cannot insert breakpoint 1.
Cannot access memory at address 0x4fa
(gdb)
Здесь ошибка: введите описание изображения здесь
Я перезапускаю программу дизассемблирования c с помощью GDB, и я делаю это с помощью b 4 вместо break*0x000004fa и запускаю код, он все еще не может работать!
Я думаю, что правильный вывод должен быть:
(gdb) run
Starting program: /root/my-document/test/first
Breakpoint 1, 0x000004fa in main()
(gdb)