Date: Mon, 13 May 1996 17:01:01 +0200 (IST) From: Eli Zaretskii To: kagel AT dg1 DOT bloomberg DOT com Cc: freak AT uci DOT edu, djgpp AT delorie DOT com Subject: Re: Compiling .cpp files with DJGPP GXX In-Reply-To: <9605131251.AA01462@quasar.bloomberg.com > Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Mon, 13 May 1996 kagel AT quasar DOT bloomberg DOT com wrote: > gcc -o myprogram mystuff.o myutils.o -lgpp Don't forget libstdcxx: gcc -o myprogram mystuff.o myutils.o -lgpp -lstdcxx Actually, it's better to begin with -lstdcxx alone (it's free, not LGPL as -lgpp) and add -lgpp only if you have unresolved externals. Oh, and currently gxx doesn't search -lstdcxx automatically, so you must put it there yourself.