From: Robert Hoehne Newsgroups: comp.os.msdos.djgpp Subject: RHIDE 1.3: known bugs Date: Mon, 16 Jun 1997 10:59:33 +0200 Organization: TU Chemnitz-Zwickau Lines: 58 Message-ID: <33A50075.5A952EBD@Mathematik.TU-Chemnitz.DE> NNTP-Posting-Host: pandora.hrz.tu-chemnitz.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit CC: Selfgovern AT aol DOT com, Cylon AT ou DOT edu To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Here I want to inform you about some bugs in RHIDE 1.3. At this I want to say sorry to the user who complaint about bug when compiling .cpp files and I answered the wrong things (I did this before testing it). It is really a bug (the builtin rules were wrong). Know bugs in RHIDE 1.3: - RHIDE searches in the wrong places for the file rhide.env. As in the doc said, that it searches the file for instance in $(DJDIR)/share/rhide, it searches in $(DJDIR)/share/rhide/rhide. That means, if you want to create your own customized rhide.env, you have to place it (when using RHIDE 1.3) in the directory with twice /rhide in it and when later switching to newer version of RHIDE move the file simply one directory lower. - Some builtin rules for compiling are wrong. But this can be solved by overwriting them with the correct values without recompiling RHIDE. To do it so create a file rhide.env (or add to an already existing) and put there the following lines # 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) And now copy the file rhide.env to the directory c:/djgpp/share/rhide/rhide [ if your DJGPP is an other, then replace c:/djgpp with the correct one ] And of course if this directory does not exeist, create it first. For Linux users: The directory should be /usr/local/share/rhide/rhide Or an other solution is to add these lines to your djgpp.env file in a section for RHIDE. Example: [rhide] ... <--- put here the lines from above -- ***************************************************************** * Robert Hoehne, Fakultaet fuer Mathematik, TU-Chemnitz-Zwickau * * Post: Am Berg 3, D-09573 Dittmannsdorf * * e-Mail: Robert DOT Hoehne AT Mathematik DOT TU-Chemnitz DOT DE * * WWW: http://www.tu-chemnitz.de/~rho * *****************************************************************