> Date: Thu, 25 Jan 2001 14:15:50 -0500 (EST)
> From: Jake McHenry <[EMAIL PROTECTED]>
> 
> Is there a c++ compiler in 6.2, and if there is, how do I get it to run? I have
> RH7 at home, but I haven't tried to upgrade yet. Is there one in 7? Also, what
> does the file extension have to be so the compiler knows it's c++. I know with
> C, it is just file.c, is c++ file.cpp? That is what I have been trying with.
> Here is what I have tried so far...
> 
> cpp file.cpp
> cpp -lang-c++ file.cpp
> gcc file.cpp
> cc file.cpp
> 
> I know that gcc and cc doesn't like c++, but I'd thought I'd try it anyway. When
> I run the cpp file.cpp or the second one, it displays what is in the file, but
> doesn't compile anything, or atleast doesn't give me an output file.
> 
> TIA,
> Jake

g++ file.cpp

will generate an executable named a.out

file.C seems to be the more standard way to name C++ files on Unix
systems but it shouldn't make any difference.

Dave



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to