Date: Wed, 27 Jan 1999 09:56:07 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Ralf Neumann cc: djgpp AT delorie DOT com Subject: Re: djgpp In-Reply-To: <19990126143913.27518.qmail@hotmail.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Tue, 26 Jan 1999, Ralf Neumann wrote: > But how do I go on, and if I have to use something like ld -o main.exe > a.o b.o in the end, how do I include iostream (here I guess -lgpp > doesn't work). This is explained in the file README.1ST, and again in the beginning of the DJGPP FAQ list. To link several C++ object files together, say something like this: gcc -o main.exe a.o b.o -lstdcxx -lm (You can omit -lm if you don't use non-ANSI math functions.)