Re: Is it not possible to supply run time arguments to ddd on the commandline when starting ddd?
"Mgr. Šimon Tóth" <[email protected]> Tue, 01 Nov 2011 00:37:52 +0100
| Newsgroups | gmane.comp.debugging.ddd.general |
|---|---|
| Message-ID | <[email protected]> |
> Is it not possible to supply run time arguments to ddd on the > commandline when starting ddd? i.e. > > ddd myprog arg1 arg2 arg3 How would that make any sense? You need to specify the parameters when you are starting the program you are debugging not when you are starting the debugger. (gdb) start arg1 arg2 arg3 or (gdb) run arg1 arg2 arg3 -- Mgr. Simon Toth