Date: Tue, 1 Jun 1999 09:22:49 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Terry Wilcox cc: djgpp AT delorie DOT com Subject: Re: Problem with linking Rhide In-Reply-To: <3750C5F2.776D272F@Hotmail.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sun, 30 May 1999, Terry Wilcox wrote: > The problem is that rhide appends a -lstdcx to the end of all linking > commands so an example of what it might do would be: > gxx -o myProgram.exe myProgram.o -lstdcx > > It interupts the -lstdcx as a file it has to open, and since there is no > such file it ends with an error. The linker only interprets -lstdcx as a file name if the main strategy of looking for a library called libstdcx.a fails. Your *real* problem is with that library. See section 8.7 of the DJGPP FAQ list for several possible causes and ways to solve them.