Write description of using g++.
AIM:
Write description of using g++.
THEORY:
g++ is your friendly Gnu C++ compiler.
g++ does not handle templates well, but you can use them. This document serves
as a very simple bunch of hints to start using g++, and is not meant to be
complete. For all the gory details about g++'s options, check out its man page.
Compiling
HelloWorld.C
Say you have a file helloworld.C as
follows :
#include <stdio.h>
void main (){
printf("Hello World\n");
}
You can compile and run it from the
unix prompt as follows :
% g++ helloworld.C
This creates an executable called
"a.out". You can run it by typing
% ./a.out
Since no executable name was specified
to g++, a.out is chosen by default. Use the "-o" option to change the
name :
% g++ -o helloworld helloworld.C
creates an executable called
"helloworld".
Include
Directories
Sometimes the header files that you
write are not in the same directory as the .C file that #include's it. For
example you might have a a file "foo.h" that resides in
/homes/me/randomplace/include. If you want to include that file in
helloworld.C, you could just give the full path name in the #include, OR you
can do the following:
Add
#include <foo.h>
to helloworld.C and compile it with the
-I option :
% g++ -o helloworld -I/homes/me/randomplace/include
helloworld.C
This basically tells g++ to look for
#include's in /homes/me/include in addition to other directories you specify
with -I
Compiling
multiple files
Most likely, you will be compiling
separate modules and linking them into a single executable. Here's the basic
idea: compile each .C file into a .o file, then link the .o files (along with
any libraries) into an executable. Of course, one of these .C files has to
define the main() or else the linker will complain. Suppose we have main.C,
foo.C and bar.C and want to create an executable fubar, and suppose further
that we need the math library:
% g++ -c -o foo.o foo.C
% g++ -c -o main.o main.C
% g++ -c -o bar.o bar.C
% g++ -o fubar foo.o main.o bar.o -lm
The first three commands generate
foo.o, main.o and bar.o respectively. The last line links them together along
with the math library, libm.a.
Labels: oop through c++ lab
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home