6.14.2. Contents of GCC
Installed programs:
c++, cc (link to gcc), cpp, g++, gcc, gccbug, and gcov
Installed libraries:
libgcc.a, libgcc_eh.a, libgcc_s.so, libmudflap.{a,so}, libssp.{a,so}, libstdc++.{a,so}, and libsupc++.a
Short Descriptions
c++
The C++ compiler
cc
The C compiler
cpp
The C preprocessor; it is used by the compiler to expand the #include, #define, and similar statements in the source files
g++
The C++ compiler
gcc
The C compiler
gccbug
A shell script used to help create useful bug reports
gcov
A coverage testing tool; it is used to analyze programs to determine where optimizations will have the most effect
libgcc
Contains run-time support for gcc
libmudflap
Contains routines that support GCC's bounds checking functionality
libssp
Contains routines supporting GCC's stack-smashing protection functionality
libstdc++
The standard C++ library
libsupc++
Provides supporting routines for the C++ programming language
c++ gcc的一个版本,默认语言设置为c++,而且在连续的时候自动包含标准c++库。这和g++一样
ccl 实际的c编译程序
cclplus 实际的c++编译程序
collect2 在不使用GNU链接程序的系统上,有必要运行collect2来产生特定的全局初始化代码(例如c++的构造函数和析构函数)
g++ gcc的一个版本,默认语言设置为c++,而且在链接的时候自动包含标准c++库,这和c++一样
gcc 该驱动程序等同于执行编译程序和链接程序以产生必要的输出
libgcc 该库包含的例程被作为编译程序的一部分,是因为它们可被链接到实际的可执行程序中。它们是特殊的例程,链接到可执行程序,来执行基本的任务,例如浮点运算。这些库中的例程通常都是平台相关的。
libstdc++ 运行时库,包括定义为标准语言一部分的所有的c++类和函数
阅读(1275) | 评论(0) | 转发(0) |