From: thisaddresswontwork AT noplace DOT org Newsgroups: comp.os.msdos.djgpp Subject: Very Elementary Question from a beginner Date: 23 Mar 1999 22:53:36 GMT Organization: AT&T WorldNet Services Lines: 22 Message-ID: <36F81C4E.5D949463@noplace.org> NNTP-Posting-Host: 12.77.93.112 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.5 [en] (Win95; U) X-Accept-Language: en To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Hi, I am attempting to teach myself a bit about C++ using "Sam's teach yourself C++ in 24 hours: Second Edition" I am using the DJGPP compiler that was included with the book. When I attempt to compile the file "hello.cpp" which is as I typed it: 1: #include 2: 3: int main() 4: { 5: cout << "Hello World!/n"; 6: return 0; 7: } To compile this program, I am using the command "gxx hello.exe -o hello.cpp" When I do this I get the following error: "gxx.exe: installation problem, cannot exec 'stubify': No such file or directory (ENOENT) Any help that you can give me with this would be greatly appreciated! saxblue