gcc-desc.xml 2.8 KB

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