Message-ID: <3625497B.69D2620@montana.com> Date: Wed, 14 Oct 1998 19:01:47 -0600 From: bowman X-Mailer: Mozilla 4.5b2 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: djgpp AT delorie DOT com Subject: Re: GNU g++ compiler from your web site. References: <36251625 DOT 36510594 AT webb-automobiles DOT com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp AT delorie DOT com Sachin K Chudasama wrote: > > Please could you now tell me how to use it to compile, link and run a > c++ program if I type one out in an editor such as notepad. assuming the environment and paths are set correctly, gxx -o junk.exe junk.cpp is the very simplest command line to produce an executable (junk.exe) from your source (junk.cpp). gxx, or g++, on Win95 will pick up the library automatically. There are many common problems, and these are all treated in depth in the excellent FAQ that you should have downloaded. Once you have compiled the canonical 'hello world' , use the info utility and the included .inf files for further detail on all the packages, the standard library, and the gcc compiler.