对于在应用程序中加入参数进行调试的方法:
(1)#gdb a.out(gdb) r -p1 -p2
(2)或者在运行run命令前使用set args命令:
(gdb) set args p1 p2可以用show args 命令来查看
当我们把Linux gdb当成一个参数如何传递呢?