mtab a real file now
[linux_from_scratch.git] / BOOK / appendixa / gcc-desc.xml
blobf845907cffb66c6cc0f26f25058d0391c9a334dd
1 <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
3 <sect2><title>Descriptions</title>
5 <para>Last checked against version &gcc-contversion;.</para>
7 <sect3><title>Program file descriptions</title>
9 <sect4><title>cc, cc1, cc1plus, gcc</title>
10 <para>These are the C compiler. A compiler translates source code in
11 text format to a format that a computer understands. After a source code 
12 file is compiled into an object file, a linker will create an executable 
13 file from one or more of these compiler generated object files.</para></sect4>
15 <sect4><title>c++, cc1plus, g++</title>
16 <para>These are the C++ compiler, the equivalent of cc and 
17 gcc etc.</para></sect4>
19 <sect4><title>c++filt</title>
20 <para>The C++ language provides function overloading, which means that it is
21 possible to write many functions with the same name (providing each takes
22 parameters of different types). All C++ function names are encoded into
23 a low-level assembly label (this process is known as mangling). The c++filt
24 program does the inverse mapping: it decodes (demangles) low-level names
25 into user-level names so that the linker can keep these overloaded functions
26 from clashing.</para></sect4>
28 <sect4><title>collect2</title>
29 <para>collect2 assists with the compilation of constructors.</para></sect4>
31 <sect4><title>cpp, cpp0</title>
32 <para>cpp pre-processes a source file, such as including the contents of
33 header files into the source file. Simply add a line, such as #include
34 &lt;filename&gt;, to your source file. The preprocessor will insert the
35 contents of the included file into the source file.</para></sect4>
37 <sect4><title>gccbug</title>
38 <para>gccbug is a shell script which is used to simplify the creation of
39 bug reports.</para></sect4>
41 <sect4><title>gcov</title>
42 <para>gcov analyzes programs to help create more efficient, faster running
43 code through optimization.</para></sect4>
45 <sect4><title>tradcpp0</title>
46 <para>No description is currently available.</para></sect4>
48 </sect3>
50 <sect3><title>Library file descriptions</title>
52 <sect4><title>libgcc, libgcc_eh, libgcc_s</title>
53 <para>Run-time support files for gcc.</para></sect4>
55 <sect4><title>libiberty</title>
56 <para>libiberty is a collection of subroutines used by various GNU
57 programs including getopt, obstack, strerror, strtol and strtoul.</para></sect4>
59 <sect4><title>libstdc++</title>
60 <para>libstdc++ is the C++ library. It is used by C++ programs and contains
61 functions that are frequently used in C++ programs. This way the
62 programmer doesn't have to write certain functions (such as writing a
63 string of text to the screen) from scratch every time he creates a
64 program.</para></sect4>
66 <sect4><title>libsupc++</title>
67 <para>libsupc++ provides support for the c++ programming language. Among other
68 things, libsupc++ contains routines for exception handling.</para></sect4>
70 </sect3>
72 </sect2>