Message-ID: <001201bdc2e7$fc335b60$4cdc7dc2@indigo.ie> From: "David FitzGerald" To: "DJGPP Mailing List" Subject: Re: Can't get c++ part of djgpp to work! Date: Sat, 8 Aug 1998 17:17:04 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Precedence: bulk >Put SET LFN=Y in your autoexec.bat file, and compile with gxx rather than gcc. Well, it seems tohave gone a bit further. C:\djgpp>gxx -c dave.cpp In file included from dave.cpp:1: c:/djgpp/lang/cxx/iostream.h:31: streambuf.h: No such file or directory (ENOENT) But... if made to an 8.3 filename and a similar reference in iostream it works... obviously not ideal, but it won't see long file names. --------------------------- gxx -c works fine to create the .o fil C:\djgpp>gxx -o dave.exe dave.o c:/djgpp/bin/ld.exe: cannot open -lstdcxx: No such file or directory (ENOENT) It looks like gxx thinks an argument is a filename, but I can't seem to track down exectly where it uses it. It's rather frustrating! Thanks for your help. Dave.