Assembly 我怎样才能让GDB停止向我索要符号?

Assembly 我怎样才能让GDB停止向我索要符号?,assembly,gdb,msp430,Assembly,Gdb,Msp430,我正在调试远程存根(嵌入式、程序集)。我可以很好地连接: $ msp430-gdb -nx -ex 'target remote XXX' 现在,当我尝试设置断点时,GDB抱怨没有符号: (gdb) b 0x4404 No symbol table is loaded. Use the "file" command. Make breakpoint pending on future shared library load? (y or [n]) n (gdb) 我怎么能告诉它不要问我“

我正在调试远程存根(嵌入式、程序集)。我可以很好地连接:

$ msp430-gdb -nx -ex 'target remote XXX'

现在,当我尝试设置断点时,GDB抱怨没有符号:

(gdb) b 0x4404
No symbol table is loaded.  Use the "file" command.
Make breakpoint pending on future shared library load? (y or [n]) n
(gdb)
我怎么能告诉它不要问我“未来的库负载”或没有符号表?遥控器永远不会有这两样东西。谢谢


编辑:我是个白痴。地址中断的语法是“b*addr”。GDB将0x4404解释为行号、符号或愚蠢的东西。

FWIW原始问题的答案是使用“设置断点挂起”;默认设置为“自动”,但您可以使用“开”或“关”自动创建或拒绝挂起的断点

(gdb) b 0x4404
No symbol table is loaded.  Use the "file" command.
Make breakpoint pending on future shared library load? (y or [n]) n
(gdb)