Mail Archives: cygwin/2002/08/17/08:04:19
On 17 Aug 2002, Gary Thomas wrote:
> On Sat, 2002-08-17 at 01:03, å¼ äº® wrote:
> >
> > hi all,
> > my c++ code:
> > #include <iostream.h>
> > ...
> >
> > cout<<value;
> > ...
> >
> > >gcc classtest.cxx -g -o classtest.exe
> > ld error:
> > undefined reference to "cout" and operator "<<"
> >
> > how to get iostream's support?
> >
>
> This would be better asked on the CygWin list :-)
This would be better asked on the GCC list :-p
I believe this is in the gcc FAQ. However, it's been asked often enough
on this list, so here's an answer for the archives:
gcc uses the file extension to determine the language. Any extension it
doesn't recognize is assumed to be a C file. The default extension for a
C++ file is ".C". gcc does not recognize ".cxx", which is used by
Microsoft compilers, I think. It is, of course, possible to tell gcc to
treat a ".cxx" file as a C++ file. In case you don't want to mess with
the gcc configuration, use either the "-x c++" option of gcc, or simply
call g++.
Igor
--
http://cs.nyu.edu/~pechtcha/
|\ _,,,---,,_ pechtcha AT cs DOT nyu DOT edu
ZZZzz /,`.-'`' -. ;-;;,_ igor AT watson DOT ibm DOT com
|,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski
'---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow!
It took the computational power of three Commodore 64s to fly to the moon.
It takes a 486 to run Windows 95. Something is wrong here. -- SC sig file
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
- Raw text -