使用nasm编译后,当我使用gdb ./myfile
打开文件时,刚开始进行汇编编程,(在./sandbox(其文件名)中未找到调试符号)
尝试了来自终端objdump,nm等的许多命令,在./sandbox中找不到调试符号
ASM代码
section .data
section .text
global _start
_start:
nop
; put your experiments between here
; put your experiments between here
nop
section .bss
makefile中的代码
sandbox: sandbox.o
ld -m elf_i386 -s -o sandbox sandbox.o
sandbox.o: sandbox.asm
nasm -f elf -g -F dwarf sandbox.asm -l sanbox.lst
从gdb objdump获取错误
(在./sandbox(其文件名)中找不到调试符号)