Date: Thu, 9 Apr 1998 13:19:42 +0300 (IDT) From: Eli Zaretskii To: Ryuji Yokoyama cc: djgpp AT delorie DOT com Subject: Re: What did I miss ? In-Reply-To: <352c1f8f.2046925@netnews.nyu.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Thu, 9 Apr 1998, Ryuji Yokoyama wrote: > I got this file the result of "redir -o err.log -eo g++ -v prog.cpp" The default name of the program created by DJGPP is a.exe (because of its Unix legacy). You will probably find a file a.exe sitting there: this is what the linker creates in your case. You need to say something like "g++ prog.cpp -o prog.exe" to get prog.exe, as you probably want.