Date: Mon, 3 Feb 1997 18:49:03 +0200 (IST) From: Eli Zaretskii To: John Eccleston cc: djgpp AT delorie DOT com Subject: Re: [Q] C++ linking: Should I be worried? In-Reply-To: <854975234.266917@red.parallax.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Mon, 3 Feb 1997, John Eccleston wrote: > gxx -c -O2 demo.cc > gcc.exe: -lgpp: linker input file unused since linking not done > gcc.exe: -lstdcx: linker input file unused since linking not done > gcc.exe: -lm: linker input file unused since linking not done > > Are these messages important or can I just ignore them? The executable > that is built seems to work fine? That's because you use gxx to compile only. Gxx was written on the assumption that it is called either to link or to compile and link. So you should compile with gcc and link with gxx if you need to do it in two steps. Anyway, the messages can be ignored.