How to load program reading stdin and taking parameters in gdb?
Posted
by vinc456
on Stack Overflow
See other posts from Stack Overflow
or by vinc456
Published on 2009-01-18T17:36:20Z
Indexed on
2010/04/09
9:33 UTC
Read the original article
Hit count: 304
I have a program that takes input from stdin and also takes some parameters from command line. It looks like this:
cat input.txt > myprogram -path "/home/user/work"
I try to debug the code with gdb inside emacs, by M-x gdb, I try to load the program with the command:
gdb cat input.txt > myprogram -path "/home/user/work"
However, gdb does not like it.
Question cribbed from here. Unfortunately I don't understand the solution and am not sure what to do beyond compiling with the -g option and running the command M-x gdb.
© Stack Overflow or respective owner