gcc-desc.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
  2. <sect2><title>Short descriptions</title>
  3. <para><command>cpp</command> is the C preprocessor. It is used by the
  4. compiler to have the #include and #define and such statements expanded in
  5. the source files.</para>
  6. <para><command>g++</command> is the C++ compiler.</para>
  7. <para><command>gcc</command> is the C compiler. It is used to translate
  8. the source code of a program into assembly code.</para>
  9. <para><command>gccbug</command> is a shell script used to help create
  10. good bug reports.</para>
  11. <para><command>gcov</command> is a coverage testing tool. It is used to
  12. analyze programs to find out where optimizations will have the most effect.</para>
  13. <para><command>libgcc*</command> contains run-time support for gcc.</para>
  14. <para><command>libiberty</command> contains routines used by various GNU
  15. programs, including getopt, obstack, strerror, strtol and strtoul.</para>
  16. <para><command>libstdc++</command> is the standard C++ library. It contains
  17. many frequently-used functions.</para>
  18. <para><command>libsupc++</command> provides supporting routines
  19. for the c++ programming language.</para>
  20. </sect2>