From: Charles Terry Newsgroups: comp.os.msdos.djgpp Subject: Re: Start at the Beginning Date: Sun, 15 Mar 1998 09:56:11 -0800 Organization: All USENET -- http://www.Supernews.com Lines: 44 Message-ID: <350C163B.4CC@plinet.com> References: <350B4D4A DOT B4BAFF9C AT mail DOT nprg DOT com> NNTP-Posting-Host: 10716 AT 207 DOT 174 DOT 3 DOT 181 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 Michele Fox wrote: > > First of all, Thank you...Delorie is a wonderful and rare thing !! > > Everything is loaded, I believe properly. I want to create and run a > program using Rhide. > > Can you please point to the instructions to do the following: > Compile > Make > Run The proceedure is: (for dos, not windows) open rhide in the directory your source files are in. open your project - if it doesn't exist create it. add the source files to the project F9 should compile and link the whole program. I would suggest if your using c++ to use a cc extention instead of cpp. The gdb debugging program likes it better. My version of streambuf.h was truncated to streambu.h when unpacked that might be your probelem. My fix would be to edit iostream.h to change the include file name. Good luck Charles > What I did...exactly > #include > void main (void) > { > cout << "I am going to fail my class very soon!"; > } > 1)compile - ans. "Compiling:hello.cpp" "hello.cpp(1) In file include > from hello.cpp.1: > c:/djgpp/lang/cxx/iostream.h(31) Error: streambuf.h: No such file or > directory > There were some errors > > Help !! >