gcc-desc.xml 959 B

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