假设我在gdb memcached
,但希望将其作为memcached -d -u root -m 50 -c 1024 -p 11051
运行。
怎么做?
答案 0 :(得分:1)
在gdb提示符下,juste类型
运行-d -u root -m 50 -c 1024 -p 11051
答案 1 :(得分:1)
另外,您也可以使用args
参数:
(gdb) help set args
Set argument list to give program being debugged when it is started.
Follow this command with any number of args, to be passed to the program.
所以在你的情况下:
set args -d -u root -m 50 -c 1024 -p 11051
run (or) start