This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: c++ compling error


"Namsuk Kim" <nskim@wa.freei.net> writes:
> hi,
> 
> I have just installed gygnus.  However, when I test gcc with a simple "hello
> world" gives "undefined reference to 'cout' error.
> 
> #include <iostream>
> void main()
  ^^^^
  int is the only allowed return type. 
  ^^^^
> {
>     cout << "hello world\n";
> }
> 
> mingw32 gives the same result.  Version doesn't seem to be the matter.
> Waiting for your help.

Use c++, not gcc; and, while you're at it, fix your code to change 
void->int for main() return type (see any decent C++ text, such as
Stroustrup 3rd Ed.).

Regards,
Mumit


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]