peter wrote:
> Hello All,
> 
> I need to run vlc with parameters within gdb. How do I do it.
> The language of man pages is kind of strange to me. :(
> 
> (gdb) run /usr/bin/vlc -I dummy --extraintf=http
> --sout-transcode-fps=25.0000
> Starting program:  /usr/bin/vlc -I dummy --extraintf=http
> --sout-transcode-fps=25.0000
> No executable file specified.
> Use the "file" or "exec-file" command.
> 
> File and exec-file doesn't work either.
> 
> I need a backtrace. So could someone help me out with the proper command?
> 

Try "gdb /usr/bin/vlc" then
(gdb) run -I dummy --extraintf=http --sout-transcode-fps=25.0000

or
"gdb"
(gdb) file /usr/bin/vlc
(gdb) run -I dummy --extraintf=http --sout-transcode-fps=25.0000

Run only wants arguments. It assumes you have already loaded an
executable. Also try:
(gdb) help

-- 
   kr
-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to