Date: Wed, 9 Jul 1997 12:18:40 +0300 (IDT) From: Eli Zaretskii To: Kristian Krebs , djgpp AT delorie DOT com Subject: Re: Help with ezgcc In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk Sorry, I didn't realise that you might use DJGPP v1.x, not v2. If that is so, you cannot say "gcc foo.c -o foo.exe", because DJGPP v1.x doesn't know how to create DOS .exe files directly. You need to do this: gcc foo.c -o foo coff2exe foo The last step will give you foo.exe that you can run from the DOS prompt.