From: "Tony O'Bryan" Newsgroups: comp.os.msdos.djgpp Subject: Re: Compiling .C files Date: Mon, 29 Dec 1997 13:44:58 -0600 Organization: Southwest Missouri State University Lines: 10 Message-ID: <34A7FDBA.3E83@nic.smsu.edu> References: Reply-To: aho450s AT nic DOT smsu DOT edu NNTP-Posting-Host: marie.a02.smsu.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Matt Riker wrote: > > Usually when I compile .C files, DJGPP makes an executable. But today I > tried to compile, and DJGPP only made an .O file. Does anyone know why? You probably used the -c switch. If this .o file was part of a larger project build, then a source file probably contained an error which caused the build to stop after the file was compiled to an object file (which is what the .o extension means), thereby preventing gcc from putting all the .o files together to form the executable.