Chris Johnson wrote:
Hi. I just thought I'd share a widget that I find helpful. Invoking gdb is something I need to do a lot lately, it seems, and I often think I can pass the program's arguments as arguments to gdb: gdb myprog arg1 arg2 arg3 But gdb doesn't accept this because it expects other unnamed arguments. Treating the whole command as a single argument to gdb also fails: gdb "myprog arg1 arg2 arg3"
gdb --args myprog arg1 arg2 arg3 works on my version of gdb, at least.