gdb won't accept stdin redirection in emacs - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:13:26Z http://stackoverflow.com/feeds/question/769250 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/769250/gdb-wont-accept-stdin-redirection-in-emacs 0 gdb won't accept stdin redirection in emacs Colin 2009-04-20T17:18:19Z 2009-04-21T00:10:11Z <p>I'm trying to debug a program using gdb mode in emacs. It was compiled with g++, and I'm using cygwin. My program takes one command line argument, and also takes input from stdin, which I redirect from a file, like this:</p> <pre><code>program.exe inputFile.dat &lt;otherInput.dat </code></pre> <p>The problem is, gdb is sending the string</p> <pre><code>"&lt;otherInput.dat" </code></pre> <p>as a command line argument instead of redirecting stdin. How do I force gdb to redirect stdin?</p> <p>EDIT:</p> <p>Within gdb, I'm using the command:</p> <pre><code>run inputFile.dat &lt;otherInput.dat </code></pre> <p>It doesn't work when I use gdb outside of emacs, either.</p> <p>EDIT #2: </p> <p>dfa pointed out a similar question: <a href="http://stackoverflow.com/questions/455544/how-to-load-program-reading-stdin-and-taking-parameters-in-gdb">http://stackoverflow.com/questions/455544/how-to-load-program-reading-stdin-and-taking-parameters-in-gdb</a></p> <p>Unfortunately, the accepted answer for that question isn't working for me... Could it be a cygwin-related bug?</p> http://stackoverflow.com/questions/769250/gdb-wont-accept-stdin-redirection-in-emacs/769261#769261 2 Answer by Bastien Léonard for gdb won't accept stdin redirection in emacs Bastien Léonard 2009-04-20T17:22:04Z 2009-04-20T17:22:04Z <p>It seems that you have to use the <code>run</code> command:</p> <blockquote> <p>You can redirect your program's input and/or output using shell redirection with the run > command. For example,</p> <pre><code>run &gt; outfile </code></pre> </blockquote> <p><a href="http://sourceware.org/gdb/current/onlinedocs/gdb_5.html#SEC24" rel="nofollow">http://sourceware.org/gdb/current/onlinedocs/gdb_5.html#SEC24</a></p> http://stackoverflow.com/questions/769250/gdb-wont-accept-stdin-redirection-in-emacs/769270#769270 2 Answer by dfa for gdb won't accept stdin redirection in emacs dfa 2009-04-20T17:23:38Z 2009-04-20T17:23:38Z <p>duplicate of <a href="http://stackoverflow.com/questions/455544/how-to-load-program-reading-stdin-and-taking-parameters-in-gdb">http://stackoverflow.com/questions/455544/how-to-load-program-reading-stdin-and-taking-parameters-in-gdb</a> ?</p> http://stackoverflow.com/questions/769250/gdb-wont-accept-stdin-redirection-in-emacs/770563#770563 0 Answer by coppro for gdb won't accept stdin redirection in emacs coppro 2009-04-21T00:10:11Z 2009-04-21T00:10:11Z <p>If you are using bash, you can attach gdb to the process immediately by doing <code>PROGRAM ARGS &lt; FILE &amp; jobs -x gdb PROGRAM %1</code>. Depending on the shell you use, you may find yourself having to use more creative methods (probably involving output from <code>ps -C</code> being redirected into gdb's command line).</p>