gdb won't accept stdin redirection in emacs - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T17:13:26Zhttp://stackoverflow.com/feeds/question/769250http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/769250/gdb-wont-accept-stdin-redirection-in-emacs0gdb won't accept stdin redirection in emacsColin2009-04-20T17:18:19Z2009-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 <otherInput.dat
</code></pre>
<p>The problem is, gdb is sending the string</p>
<pre><code>"<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 <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#7692612Answer by Bastien Léonard for gdb won't accept stdin redirection in emacsBastien Léonard2009-04-20T17:22:04Z2009-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 > 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#7692702Answer by dfa for gdb won't accept stdin redirection in emacsdfa2009-04-20T17:23:38Z2009-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#7705630Answer by coppro for gdb won't accept stdin redirection in emacscoppro2009-04-21T00:10:11Z2009-04-21T00:10:11Z<p>If you are using bash, you can attach gdb to the process immediately by doing <code>PROGRAM ARGS < FILE & 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>