From: Damian Yerrick Newsgroups: comp.os.msdos.djgpp Subject: Re: CAN'T get DJGPP to WORK. HElP? Organization: Pin Eight Software http://pineight.8m.com/ Message-ID: References: <39D679E9 DOT 5C2A5D0E AT uswest DOT net> X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 32 X-Trace: /bQNubb9W79TQxr++KdBPBGW2HaMmh3Qj1VBEyddKum/qQpQAw6OqkaF9EDuOKGo7wvcNaGcTJ9n!fYrwBYJePIhS5R0xVgrX0wtH5wmf83/WpzFWrtkoZn5EZl6uBx5mJyaJ1Hg9lgGei/N1lbQtUeZV!KABorA== X-Complaints-To: abuse AT gte DOT net X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly NNTP-Posting-Date: Sun, 01 Oct 2000 19:23:51 GMT Distribution: world Date: Sun, 01 Oct 2000 19:23:51 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On Sat, 30 Sep 2000 17:40:26 -0600, diritol wrote: >I've downloaded djgpp/rhide 3 times, and each time I couldn't get it too >work... >Every program I try, even the simple 'Hello World' > >#include > >int main() >{ >cout<<"howdy world"; >return 0; >} > >program doesn't work. I ALWAYS get this error: 'Macro name missing >after -d option'... >I know now I'm doing something wrong with the compiler/rhid; but what? Try compiling from the command line gpp hello.cpp -o hello.exe and see if it gives the same problem. And yes, it has to be .cpp or .cc; gpp.exe recognizes the language based on the extension. Also, paste the exact error message. --