Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道要将参数传递给我可以运行的 gdb 程序
r arg1 arg2 arg3
但我想传递一个名称与参数相关联的 GFLAG。就像是
r arg1="hi" arg2="there"
我想传递一个名称与参数关联的 GFLAG。
什么事拦住你了?
这有效:
gdb --args /path/to/binary --flag1=foo --flag2=bar --flag3="hi there"
这样做也是如此:
(gdb) run --flag1=foo --flag2=bar --flag3="hi there" (gdb) run --flag1 foo --flag2 bar --flag3 "hi there"