The colorgcc rpms
Find a file
2016-06-24 10:08:42 +02:00
.gitignore Initial setup of the repo 2011-05-10 15:53:19 +00:00
colorgcc-1.3.2-bz1078180.patch Allow using "color" prefix as well as "color-" prefix (bz1078180) 2014-04-17 13:49:03 +02: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 Mandatory Perl build-requires added <https://fedoraproject.org/wiki/Changes/Build_Root_Without_Perl> 2016-06-24 10:08:42 +02:00
colorgccrc.txt added README and sample config file 2014-01-03 10:33:41 +01:00
README Minor README updates 2014-01-03 14:10:23 +01:00
sampleconfig.patch Renamed and updated config sample 2014-01-03 13:58:40 +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 packaged sample config file 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.