From: Sascha Imme Newsgroups: comp.os.msdos.djgpp Subject: Re: aaah! *.cpp crashes rhide! Date: Tue, 30 Sep 1997 03:49:58 +0200 Organization: HSI Softworks Lines: 41 Message-ID: <34305AC6.5304E54@uni-bremen.de> References: <343045F3 DOT 130 AT hmm DOT com> Reply-To: imme AT uni-bremen DOT de NNTP-Posting-Host: moritz9.zfn.uni-bremen.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk > i downloaded the c++ files for djgpp. i then wrote a short "hello world" > program and tried to run it. when i did, rhide popped up the usual gray > box, but then just stalled! i could force quit it through windows 95, > but it wouldn't compile my test.cpp file! any solutions?? This is a known problem in previous versions of RHIDE caused by a wrong handling of the file-extensions. Download the most recent version to fix this bug or append the following lines to your DJGPP.ENV file. Oh, another simple solution would be to use cc as as extension for your CPP-Files. ------------------------------------ snip ------------------------------------------- [rhide] # These variables are needed for RHIDE 1.3 because the builtin ones # are wrong. Any later version of RHIDE will have that corrected so # you can remove them when using a newer version. RHIDE_COMPILE.cpp.o=$(RHIDE_COMPILE.cc.o) RHIDE_COMPILE.cxx.o=$(RHIDE_COMPILE.cc.o) RHIDE_COMPILE.C.o=$(RHIDE_COMPILE.cc.o) RHIDE_COMPILE.pas.o=$(RHIDE_COMPILE.p.o) RHIDE_COMPILE.for.o=$(RHIDE_COMPILE.f.o) RHIDE_COMPILE.F.o=$(RHIDE_COMPILE.f.o) RHIDE_COMPILE.fpp.o=$(RHIDE_COMPILE.f.o) RHIDE_COMPILE.asm.o=$(RHIDE_COMPILE.nsm.o) RHIDE_COMPILE.cpp.s=$(RHIDE_COMPILE.cc.s) RHIDE_COMPILE.cxx.s=$(RHIDE_COMPILE.cc.s) RHIDE_COMPILE.C.s=$(RHIDE_COMPILE.cc.s) RHIDE_COMPILE.cpp.ii=$(RHIDE_COMPILE.cc.ii) RHIDE_COMPILE.cxx.ii=$(RHIDE_COMPILE.cc.ii) RHIDE_COMPILE.C.ii=$(RHIDE_COMPILE.cc.ii) ------------------------------------ snip ------------------------------------------- --------------------------------------------------------------- Sascha Imme, imme AT uni-bremen DOT de, http://www.uni-bremen.de/~imme ---------------------------------------------------------------