Message-ID: <381DF11E.591F2766@surfree.net.il> Date: Mon, 01 Nov 1999 21:59:26 +0200 From: Borja Aranovic X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: Re: Help!!!! References: <381C77B1 DOT 853F5724 AT flashmail DOT com> <7vhspu$jro$1 AT neptunium DOT btinternet DOT com> <381CB2B3 DOT 1F664BDD AT flashmail DOT com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit NNTP-Posting-Host: 212.3.198.104 X-NNTP-Posting-Host: 212.3.198.104 X-Trace: 1 Nov 1999 21:59:00 +0200, 212.3.198.104 Lines: 73 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com This is a common problem... I suggest you to read the FAQ somewhere where i dont remember... i think section 7.4 or 8.4.... kill me, i dont remember,... anyway... fast way to fix that: add to your C:\DJGPP\DJGPP.ENV the following line (add it in the beginning): RHIDE_TYPED_LIBS_DJGPP.cc=stdcxx anyway, this problem caused by Long Filenames, and the problem with DOS that can't handle it... or something like that... i hope it helped, good luck ;) Borja Marius De Romanus wrote: > That fixed it. I have another problem it seems as well, when I compile the > same program it gives me this error: > > // Here's the code by the way. > > #include > int main() > { > cout << "Hello.\n"; > return 0; > } > // End code. > > Error: C/develo~1/djgpp/bin/ld.exe: cannot open -lstdcx: no such file or > directory (ENOENT) > > I don't know if this is related to the last problem or not. Thanks in advance. > > Jonathon wrote: > > > I think you need > > set DJGPP=C:\development\DJGPP\DJGPP.ENV > > set PATH=C:\development\DJGPP\BIN;%PATH% > > > > Marius De Romanus wrote in message > > news:381C77B1 DOT 853F5724 AT flashmail DOT com... > > > I'm having trouble with RHIDE 1.4. I've just downloaded and unzipped all > > > of the required stuff for DJGPP into C:\Development\Djgpp and have > > > preserved the directory structure. I added the two lines > > > > > > set DJGPP=C:\DJGPP\DJGPP.ENV > > > set PATH=C:\DJGPP\BIN;%PATH% > > > > > > to my autoexec.bat file as well. When I start up RHIDE and try to > > > compile this program (Hello.cpp) > > > > > > #include > > > int main() > > > { > > > cout << "Hello.\n"; > > > return 0; > > > } > > > > > > it gives me the error > > > > > > "Bad command or filename". > > > > > > I *think* the problem is that I only checked C++ and Assembly as the > > > languages I wanted to use at the Zip Picker. Should have I downloaded > > > the C zip? Are there steps to setup RHIDE to do C++ or C? > > > > Regards > > Jonathon