刚把gdbserver编译好 又遇上了新麻烦 在用elf2flat将elf格式转化为flat格式时 debug信息没有被保存下来 在elf2flt.ld中已经包含了
.junk : {
*(.rel*)
*(.rela*)
} > junk
/* Stabs debugging sections. */
.stab 0 : { *(.stab) }
.stabstr 0 : { *(.stabstr) }
.stab.excl 0 : { *(.stab.excl) }
.stab.exclstr 0 : { *(.stab.exclstr) }
.stab.index 0 : { *(.stab.index) }
.stab.indexstr 0 : { *(.stab.indexstr) }
.comment 0 : { *(.comment) }
.debug_abbrev 0 : { *(.debug_abbrev) }
.debug_info 0 : { *(.debug_info) }
.debug_line 0 : { *(.debug_line) }
.debug_pubnames 0 : { *(.debug_pubnames) }
.debug_aranges 0 : { *(.debug_aranges) }
}
请指教
[em04]
关键词:
请教
uClinux
何用
gdbserver
调