Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com X-Authentication-Warning: slinky.cs.nyu.edu: pechtcha owned process doing -bs Date: Thu, 7 Aug 2003 10:09:19 -0400 (EDT) From: Igor Pechtchanski Reply-To: cygwin AT cygwin DOT com To: "Zafrulla, Zahoor (Cognizant)" cc: cygwin AT cygwin DOT com Subject: Re: Problem while compiling programs, using g++, which use the string data type In-Reply-To: <1449D1D9E1F9904484E66495141CA3C4070BFA@ctsintdlsxub.cts.com> Message-ID: Importance: Normal MIME-Version: 1.0 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-ID: On Thu, 7 Aug 2003, Zafrulla, Zahoor (Cognizant) wrote: > Hi, > > I have been trying to compile a set of files on the latest Cygwin DLL > release under Win 2000. The same set of files compiles perfectly fine > under red hat linux . In order to isolate the error i wrote a test > program and i found tht ther is some problem with programs using the c++ > string data type. This is the program i tried and the result after > compilation. > > ****************************************** > #include > #include > > int main() > { > string a = "Hello World!"; > cout << a; > return 0; > } > > ******************************************* > > $ g++ -w -o test teststr.c > teststr.c: In function `int main()': > teststr.c:6: `string' undeclared (first use this function) > teststr.c:6: (Each undeclared identifier is reported only once for each > function it appears in.) > teststr.c:6: parse error before `=' token > teststr.c:7: `a' undeclared (first use this function) > > ******************************************** > > The test program compiles fine if i use g++-2 instead of g++. Is ther > any particular option that i need to use ?? > > Can anybody tell me what the problem is. > > Thanks, > Zahoor Zafrulla Gcc 3.2 is much stricter with namespaces than gcc 2.95 was. Try using "std::string" in your program, or put "using namespace std" at the top. Igor -- http://cs.nyu.edu/~pechtcha/ |\ _,,,---,,_ pechtcha AT cs DOT nyu DOT edu ZZZzz /,`.-'`' -. ;-;;,_ igor AT watson DOT ibm DOT com |,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski, Ph.D. '---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow! "I have since come to realize that being between your mentor and his route to the bathroom is a major career booster." -- Patrick Naughton -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/