Date: Mon, 17 Apr 2000 16:15:01 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: KIRBY Mike cc: "'djgpp AT delorie DOT com'" Subject: Re: Ref DJGPP281 compilation In-Reply-To: <0DC50E3C683ED211934C0008C7245BEC02EFFA0A@XNLATES01> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Mon, 17 Apr 2000, KIRBY Mike wrote: > Ref DJGPP281 compilation [snip] > however gpp does not appear to be recognised > > however using gxx appears to compile a simple C++ file correctly > (filename.cpp) > > Have I misunderstood > > gcc is for compiling c programs > > and > > gpp is for compiling c++ programs > > I cannot see any gpp.exe file in the installation? gpp was not present in the port of GCC 2.8.1, its name was gxx back then. This changed in later versions of GCC (2.95 and later). So you can use gxx instead. > Is gxx purely for linking ?? Yes, the difference between gxx and gcc is only when linking is considered. Otherwise, they are identical.