Xref: news2.mv.net comp.os.msdos.djgpp:3076 From: mcantos AT ocean DOT com DOT au (Marcelo Cantos) Newsgroups: comp.os.msdos.djgpp Subject: Re: C++ compiling Date: Wed, 24 Apr 96 14:35:29 GMT Organization: (private) Lines: 15 Message-ID: <4llhnr$pdu@news.mel.aone.net.au> References: <199604221547 DOT BAA05718 AT linuxbox DOT nse DOT com DOT au> <4lkuss$j7t AT mo6 DOT rc DOT tudelft DOT nl> NNTP-Posting-Host: 203.12.234.172 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp In article <4lkuss$j7t AT mo6 DOT rc DOT tudelft DOT nl>, atmadja AT student DOT tn DOT tudelft DOT nl (S.A. Atmadja) wrote: >>Now I have the problem that I can not compile C++ >> >>and from the command line I try ... >> >>gcc hellocpp.cc -I\djgpp\lang\cxx hellocpp.cc -o hellocpp.exe > >Try adding -lgpp to the END of the line at the command prompt. >Alternatively try using gxx instead of gcc (so a friend of mine say's, >but I don't seem to have a gxx.exe). You may also need to include the standard C++ library: "-lstdcx". In short: gcc hellocpp.cc -IC:\djgpp\lang\cxx -o hellocpp.exe -lgpp -lstdcx If you use gxx, you don't need -IC:\... or -lgpp. Make sure you set the DJDIR environment variable to point to your djgpp directory.