X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f From: pavenis AT lanet DOT lv To: "Ian" , djgpp AT delorie DOT com Date: Mon, 25 Feb 2002 18:38:19 +0200 MIME-Version: 1.0 Subject: Re: Missing Help and header files Message-ID: <3C7A849B.15891.1151E33@localhost> In-reply-to: <3C7A4949.20276.138CE9F1@localhost> X-mailer: Pegasus Mail for Windows (v4.01) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 25 Feb 2002 at 14:25, Ian wrote: > Missing info and header files > ============================== > DJGPP version 303 using WIN 98 SE > > I have a whole load of files which worked OK with DJGPP version > 2.7xxxx but now do not compile with CGG version 303. > > I have deleted all the files associated with the old version and > reinstalled the new one. > > I would be most grate full for any help in resolving some of these. > > >From lgpnnnb.zip > * iostream > ... > * libgpp > ... > I have installed lgp2952b.zip and the link to libgpp is OK, > but info still reports "iostream NO SUCH FILE OR DIRECTORY > (NOENT)" > when I attempt to access * iostream. libg++ is deprecated and cannot be used with gcc-3.0.X iostream.info is present with gcc-2.95.3 and earlier gcc versions only (in archive gppXXXb.zip). It is obsolete and no more present with gcc-3.0.X. Please don't use it and get some book about C++ instead (like Stroustrup "C++ programming language, third edition) > > ----------------------------------------------------- > 2. C++ can't find header file. > The following program fails: > #include > #include > > the error is: > strclass.h: No such file or directory (ENOENT) > > The other header file, iostream.h, is read in OK. > > The files are on the system as: > C:\User\programs\djgpp\lang\cxx\strclass.h > C:\User\programs\djgpp\lang\cxx-v3\backward\iostream.h gcc-3.0.X searches lang/cxx-v3 but not lang/cxx. I changed name of directory to provide a possibility to put 2 versions (eg 2.95.3 and 3.0.4) in the same directory. But note that in this case some hacking is needed and it's not recommended for novice users Andris