|
⇤ ← Revision 1 as of 2006-03-11 17:11:41
Size: 646
Comment: Re-adding colorgcc page - had disappeared/been deleted for some reason
|
← Revision 2 as of 2008-03-12 02:47:10 ⇥
Size: 648
Comment: converted to 1.6 markup
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 1: | Line 1: |
| To be able to use [http://www.mindspring.com/~jamoyers/software/ colorgcc] with SCons you need an environment that includes $PATH, $TERM, and $HOME. | To be able to use [[http://www.mindspring.com/~jamoyers/software/|colorgcc]] with SCons you need an environment that includes $PATH, $TERM, and $HOME. |
To be able to use colorgcc with SCons you need an environment that includes $PATH, $TERM, and $HOME.
env = Environment(ENV = {'PATH' : os.environ['PATH'],
'TERM' : os.environ['TERM'],
'HOME' : os.environ['HOME']})- $PATH needs to include the path to where your symbolic links named gcc, g++, cxx, cc, all pointing to the colorgcc wrapper, are located.
- $TERM is used by colorgcc to check if the terminal is smart enough to handle colors.
- $HOME is used by colorgcc to find your .colorgccrc file including customizations.
