gcc-desc.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <sect2><title>Contents of GCC</title>
  2. <para>Last checked against version &gcc-contversion;.</para>
  3. <sect3><title>Program Files</title>
  4. <para>c++, c++filt, cc (link to gcc), cc1, cc1plus, collect2, cpp, cpp0,
  5. g++, gcc, gccbug, gcov, i686-pc-linux-gnu-c++, i686-pc-linux-gnu-g++,
  6. i686-pc-linux-gnu-gcc, tradcpp0</para></sect3>
  7. <sect3><title>Descriptions</title>
  8. <sect4><title>cc, cc1, cc1plus, gcc</title>
  9. <para>These are the C compiler. A compiler translates source code in
  10. text format to a format that a computer understands. After a source code
  11. file is compiled into an object file, a linker will create an executable
  12. file from one or more of these compiler generated object files.</para></sect4>
  13. <sect4><title>c++, cc1plus, g++</title>
  14. <para>These are the C++ compiler; the equivalent of cc and
  15. gcc etc.</para></sect4>
  16. <sect4><title>c++filt</title>
  17. <para>c++filt is used to demangle C++ symbols.</para></sect4>
  18. <sect4><title>collect2</title>
  19. <para>collect2 assists with the compilation of constructors.</para></sect4>
  20. <sect4><title>cpp, cpp0</title>
  21. <para>cpp pre-processes a source file, such as including
  22. the contents of header files into the source file. It's a good idea to
  23. not do this manually to save a lot of time. Someone just inserts a line
  24. like #include &lt;filename&gt;. The preprocessor inserts the
  25. contents of that file into the source file. That's one of the things a
  26. preprocessor does.</para></sect4>
  27. <sect4><title>gccbug</title>
  28. <para>gccbug is a shell script which is used to simplify the creation of
  29. bug reports.</para></sect4>
  30. <sect4><title>gcov</title>
  31. <para>gcov analyzes programs to help create more efficient, faster running
  32. code through optimization.</para></sect4>
  33. <sect4><title>i686-pc-linux-gnu-c++, i686-pc-linux-gnu-g++,
  34. i686-pc-linux-gnu-gcc</title>
  35. <para>No description is currently available.</para></sect4>
  36. <sect4><title>tradcpp0</title>
  37. <para>No description is currently available.</para></sect4>
  38. </sect3>
  39. <sect3><title>Library Files</title>
  40. <para>libgcc.a, libgcc_eh.a, libgcc_s.so, libiberty.a, libstdc++.[a,so],
  41. libsupc++.a</para>
  42. <sect4><title>libgcc, libgcc_eh, libgcc_s</title>
  43. <para>Run-time support files for gcc.</para></sect4>
  44. <sect4><title>libiberty</title>
  45. <para>libiberty is a collection of subroutines used by various GNU
  46. programs including getopt, obstack, strerror, strtol and strtoul.</para></sect4>
  47. <sect4><title>libstdc++</title>
  48. <para>libstdc++ is the C++ library. It is used by C++ programs and contains
  49. functions that are frequently used in C++ programs. This way the
  50. programmer doesn't have to write certain functions (such as writing a
  51. string of text to the screen) from scratch every time he creates a
  52. program.</para></sect4>
  53. <sect4><title>libsupc++</title>
  54. <para>libsup++ provides support for the c++ programming language. Among other
  55. things, libsup++ contains routines for exception handling.</para></sect4>
  56. </sect3>
  57. </sect2>