Newsgroups: comp.os.msdos.djgpp From: manfred DOT heumann AT uni-bielefeld DOT de (Manni Heumann) Subject: Re: Help with C++ library References: <370982e5 DOT 13785014 AT news DOT wanadoo DOT fr> X-Newsreader: News Xpress 2.01 Date: Mon, 05 Apr 1999 13:53:24 GMT NNTP-Posting-Host: ppp39-113.hrz.uni-bielefeld.de Message-ID: <3708c05a.0@news.uni-bielefeld.de> X-Trace: 5 Apr 1999 15:53:30 +0200, ppp39-113.hrz.uni-bielefeld.de Lines: 17 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Gallicus AT caramail DOT com (Gallicus) wrote: >I use the last version of Djgpp. >C programs works OK. > >I am testing the C++ library. > THE C++ library, that means the default c++ library that gxx links into your programs ist libstdcxx.a. This library tries to comply to the iso c++ standard, which says nothing about the String class, but rather has its own string class and it doesn't say anything about the Integer class as well. If you want Strings and Integers you have to link with libgpp. But be aware: this library is deprecated and does not compile to the standard, which means your code will not be portable. Manni