From: Bram de Greve Newsgroups: comp.os.msdos.djgpp Subject: Newbie needs help: gxx Date: Sat, 14 Aug 1999 20:52:13 -0700 Organization: University of Ghent, Belgium Lines: 86 Message-ID: <37B6396D.FCE2F521@rug.ac.be> NNTP-Posting-Host: sdln1p45.rug.ac.be Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="------------C6CA4F474839C2EF1EE4DC2A" X-Mailer: Mozilla 4.04 [en] (Win16; I) To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com --------------C6CA4F474839C2EF1EE4DC2A Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi there, I have a strange problem: I wrote my first program C++ program now: #include int main() { cout << "Hello World!\n"; return 0; } I tried to compile it with gcc like this: gcc -c -Wall hello.cpp and it works But I always get an error when I run gxx like this: gxx -o hello.exe hello.o or like this gxx -s -o hello.exe hello.o (I believe that -s reduces the size of hello.exe, is it?) However gxx makes hello.exe and it works alright, I always get the next message: Error: gxx.exe: installation problem, cannot exec 'stubify' - No such file or directory (ENOENT) I've already checked the djgppfaq.htm and found the exact "question", but the sollution doesn't help me out. Does anybody know what I should do? Thanks in advance, Bram de Greve --------------C6CA4F474839C2EF1EE4DC2A Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Hi there,

I have a strange problem:
I wrote my first program C++ program now:

#include <iostream.h>

int main()
{
   cout << "Hello World!\n";
   return 0;
}

I tried to compile it with gcc like this:
gcc -c -Wall hello.cpp
and it works

But I always get an error when I run gxx like this:

gxx -o hello.exe hello.o
or like this
gxx -s -o hello.exe hello.o  (I believe that -s reduces the size of hello.exe, is it?)

However gxx makes hello.exe and it works alright, I always get the next message:
Error: gxx.exe: installation problem, cannot exec 'stubify' - No such file or directory (ENOENT)

I've already checked the djgppfaq.htm and found the exact "question", but the sollution doesn't help me out.

Does anybody know what I should do?

Thanks in advance,
Bram de Greve --------------C6CA4F474839C2EF1EE4DC2A--