|
|
ar(1) -- create, modify, and extract from archives.
|
|
The GNU ar program creates, modifies, and extracts from archives. An archive is a single file holding a collection of other files in a structure that makes it possible to retrieve the original individ... |
|
as(1) -- the portable GNU assembler.
|
|
GNU as is really a family of assemblers. If you use (or have used) the GNU assembler on one architecture, you should find a fairly similar environment when you use it on another architecture. Each ver... |
|
asa(1) -- interpret carriage-control characters
|
|
The asa utility reads files sequentially, mapping FORTRAN carriage-control characters to line-printer control sequences, and writes them to the standard output. The first character of each line is int... |
|
c++(1) -- GNU project C++ Compiler
|
|
The C and C++ compilers are integrated; g++ is a script to call gcc with options to recognize C++. gcc processes input files through one or more of four stages: preprocessing, compilation, assembly, a... |
|
c++filt(1) -- demangle C++ symbols
|
|
The C++ language provides function overloading, which means that you can write many functions with the same name (providing each takes parameters of different types). All C++ function names are encode... |
|
c89(1) -- ANSI (1989) C compiler
|
|
Calls the C compiler (cc) with the given options, using a C language environment compatible with the ANSI X3.159-1989 (``ANSI C'') specification. This includes proper handling of trigraphs, disablin... |
|
cc(1) -- GNU project C and C++ Compiler (gcc-2.95)
|
|
The C and C++ compilers are integrated. Both process input files through one or more of four stages: preprocessing, compilation, assembly, and linking. Source filename suffixes identify the source lan... |
|
cccp(1) -- The GNU C-Compatible Compiler Preprocessor.
|
|
The C preprocessor is a macro processor that is used automatically by the C compiler to transform your program before actual compilation. It is called a macro processor because it allows you to define... |