Message-Id: <199605130204.WAA29100@mail.microserve.net> Comments: Authenticated sender is From: "Bruce W. Bodnyk" To: Eli Zaretskii Date: Sun, 12 May 1996 22:04:15 +0000 Subject: Re: Getting Started with DJGPP Reply-to: bruceb AT bodnyk DOT microserve DOT com CC: djgpp AT delorie DOT com > > You probably tried to run the COFF file which the GNU linker emits. DOS > doesn't know how to run such files, so you must prepend a small DOS stub > to it. Do this: > > gcc -o hello hello.c > coff2exe hello > > After that you should have hello.exe that you can run. > That did the trick! Thanks! > (Btw, this is all explained in the DJGPP FAQ list, so if EZ-GCC includes > it, be sure to read it. If not, you can get it as faq102.zip from any > SimTel mirror, directory SimTel/vendors/djgpp/v1.) > > I'll be sure to do so! Thanks Again !