Date: Thu, 28 Jan 1999 09:39:20 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: KECSKEMÉTI BALÁZS cc: djgpp AT delorie DOT com Subject: Re: Problem with header files In-Reply-To: <78nqug$mok$1@bolka.matav.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from QUOTED-PRINTABLE to 8bit by delorie.com id CAA31439 Reply-To: djgpp AT delorie DOT com On Wed, 27 Jan 1999, KECSKEMÉTI BALÁZS wrote: > So i typed this: GCC TESTPROG.CC PROG.CC EXTMOD.O If you actually typed the above in UPPER CASE, then don't: GCC is case-sensitive to file names. The right way to do it is this: gcc testprog.cc prog.cc extmod.o and I would also add "-o testprog.exe", because the default output file is a.exe, which is hardly what you want. See section 8.4 of the DJGPP FAQ list (v2/faq211b.zip from the same place you get DJGPP) for details about the letter-case of file names.