The colorgcc rpms
Find a file
2014-01-03 10:33:41 +01:00
.gitignore Initial setup of the repo 2011-05-10 15:53:19 +00:00
colorgcc-1.3.2-invocation.patch Initial import (#700833). 2011-05-12 16:32:35 -04:00
colorgcc.1.3.2.txt Initial import (#700833). 2011-05-12 16:32:35 -04:00
colorgcc.spec added README and sample config file 2014-01-03 10:33:41 +01:00
colorgccrc.txt added README and sample config file 2014-01-03 10:33:41 +01:00
README added README and sample config file 2014-01-03 10:33:41 +01:00
sources Initial setup of the repo 2011-05-10 15:53:19 +00:00

The colorgcc is a perl script written by Jamie Moyers to colorize the terminal
output of C++, CC, CCACHE, G++, GCC so error messages can be found within
longer compiler outputs.

Homepage:

    http://schlueters.de/colorgcc.html

Usage:

Call the compiler name with the 'color-' prefix, eg:
    color-gcc
    color-g++
    color-cc
    color-c++

That's it. Alternatively you may want to create following handy
aliases:

    alias gcc='color-gcc'
    alias g++='color-g++'
    alias cc='color-cc'
    alias c++='color-c++'

The default settings can be overridden with ~/.colorgccrc.
See the comments in the sample .colorgccrc for more information.

Note:

colorgcc will only emit color codes if:

    (1) Its STDOUT is a tty and
    (2) the value of $TERM is not listed in the "nocolor" option.

If colorgcc colorizes the output, the compiler's STDERR will be
combined with STDOUT. Otherwise, colorgcc just passes the output from
the compiler through without modification.