This is the mail archive of the
cygwin@cygwin.com
mailing list for the Cygwin project.
Re: Problem while compiling programs, using g++, which use the string data type
- From: Igor Pechtchanski <pechtcha at cs dot nyu dot edu>
- To: "Zafrulla, Zahoor (Cognizant)" <ZZahoor at chn dot cognizant dot com>
- Cc: cygwin at cygwin dot com
- Date: Thu, 7 Aug 2003 10:09:19 -0400 (EDT)
- Subject: Re: Problem while compiling programs, using g++, which use the string data type
- Reply-to: cygwin at cygwin dot com
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<string>
> #include<iostream.h>
>
> 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@cs.nyu.edu
ZZZzz /,`.-'`' -. ;-;;,_ igor@watson.ibm.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/