Linux C++ compiler

Marko Vojinovic vvmarko at gmail.com
Sun Jan 24 21:06:35 UTC 2010


On Sunday 24 January 2010 20:48:40 Matt Smith wrote:
> On Sun, Jan 24, 2010 at 1:51 PM, Peter Langfelder <
> peter.langfelder at gmail.com> wrote:
> > On Sun, Jan 24, 2010 at 10:41 AM, Matt Smith <smithm2 at gmail.com> wrote:
> > > using the gcc-c++ compiler can someone provide a simple 3 or 4 step
> >
> > example
> >
> > > as to how i use the compiler (in the terminal) to compile a program i
> >
> > wrote
> >
> > > and saved in a gedit file?  thanks.
> >
> > g++ -o executable program.cc
> >
> > to execute:
> >
> > ./executable
> >
> after typing g++ gedit_file.cc i get a filed name a.out in the same folder
> that is locked.  where do i go from here?  thanks

The "-o" option gives the name to the executable that is generated. If you 
omit it, the executable will get the default name, "a.out". To execute it, 
type

./a.out

Note the dot-slash notation before the filename --- it forces bash to execute 
the a.out command residing in the current directory. Otherwise bash will look 
for a.out in your default $PATH and typically won't be able to find any a.out 
executable.

HTH, :-)
Marko



More information about the users mailing list