Re: C++ script doesn't work using g++

2009-09-14 Thread Christopher Faylor
On Mon, Sep 14, 2009 at 02:09:59PM +, Gery Herbozo Jimenez wrote: >Thanks Jeremy and yes, in the message I forgot to put the and >respectively, but my script has them and however it doesn't work. I >now know cygwin doesn't support borland c++, and thanks for the posts >about it. I have to sta

RE: C++ script doesn't work using g++

2009-09-14 Thread Gery Herbozo Jimenez
er Cygwin though. It causes the compiler to report a bunch of errors. Maybe you'll have better luck. -Jeremy --Archivo adjunto de mensaje reenviado-- Date: Fri, 11 Sep 2009 20:04:19 + From: gchica...@sbcglobal.net To: cygwin@cygwin.com Subject: Re: C++ script doesn't work using

RE: C++ script doesn't work using g++

2009-09-14 Thread Gery Herbozo Jimenez
otmail.com > Subject: Re: C++ script doesn't work using g++ > > On 09/11/2009 02:49 PM, Gery Herbozo Jimenez wrote >> I have a simple script: >> >> #include >> #include >> int main() >> { >> clrscr(); >> cout<<"Hallo"

Re: C++ script doesn't work using g++

2009-09-11 Thread Greg Chicares
On 2009-09-11 18:49Z, Gery Herbozo Jimenez wrote: > > int main() > { > clrscr(); > cout<<"Hallo"; > getch(); > } This message: http://www.cygwin.com/ml/cygwin/1999-09/msg00326.html mentions the danger of mixing getch() with C++ streams, and explains why Cygwin doesn't pr

Re: C++ script doesn't work using g++

2009-09-11 Thread Jeremy Bopp
Gery Herbozo Jimenez wrote: > > I have a simple script: > > #include > #include > int main() > { > clrscr(); > cout<<"Hallo"; > getch(); > } It looks like your include statements are missing what they are supposed to include. I made a guess that they should be as follo