Date: Thu, 21 Mar 1996 17:01:37 +0200 (IST) From: Eli Zaretskii To: GEORGE ARUGAY MONTEMAYOR Cc: djgpp AT delorie DOT com Subject: Re: Q: C++ compilation In-Reply-To: <4ikvbn$oj0@news.csus.edu> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On 19 Mar 1996, GEORGE ARUGAY MONTEMAYOR wrote: > syntax: gcc test.cc > > Is that correct? No. You should use this command line: gxx test.cc Gxx invokes the compiler in a way that makes it also search the C++ libraries. You should use gxx when you link C++ programs. And please read the FAQ, this is explained there.