gpt4 book ai didi

assembly - 在 NASM 中调试符号(再次)

转载 作者:行者123 更新时间:2023-12-04 01:14:42 25 4
gpt4 key购买 nike

这个问题在 StackOverflow 上被问了好几次,但我尝试了所有的答案,但我仍然无法让 NASM 包含 DWARF 调试符号。
我在 Ubuntu 18.04 64 位下使用 NASM 2.13.02。我不确定我是否还遗漏了什么?
如果重要,我实际上想同时使用 LLDB 和 GDB。
谢谢。
这是我的代码:

section .bss
section .text

global _start

_start:
mov ebx, 0
mov eax, 1
int 80h
这是我构建和链接它的方法:
nasm -g -F dwarf -f elf64 hello.asm
ld -s -o hello hello.o
结果文件是:
$ ls -la hello
-rwxr-xr-x 1 terry terry 352 Sep 4 18:21 hello
$
尝试检查是否包含 DWARF 数据:
$ dwarfdump hello
No DWARF information present in hello
$
在 gdb 下运行它:
$ gdb ./hello 
GNU gdb (Ubuntu 8.1-0ubuntu3.2) 8.1.0.20180409-git
[... snip copyright ...]
Reading symbols from ./hello...(no debugging symbols found)...done.
(gdb)

最佳答案

我根据@Michael Petch 的建议自我回答我自己的问题,他是真正找到根本原因的人。
问题是我正在使用 ld-s这意味着“全部剥离”,包括调试符号,即我正在破坏自己的努力。
正确的命令应该是:

nasm -g -F dwarf -f elf64 hello.asm
ld -o hello hello.o
现在,使用 gdb:
$ gdb ./hello 
GNU gdb (Ubuntu 8.1-0ubuntu3.2) 8.1.0.20180409-git
[.. snip copyright ..]
Reading symbols from ./hello...done.

(gdb) b _start
Breakpoint 1 at 0x400080: file hello.asm, line 7.

(gdb) run
Starting program: /home/terry/hello

Breakpoint 1, _start () at hello.asm:7
7 xor ebx, 0
(gdb)
$

关于assembly - 在 NASM 中调试符号(再次),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63744918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com