It would be nice that, as old colormake.pl, colormake.py could colorize the compilation order too. The feature implementation is trivial and only a new (pattern,color scheme) is needed. The former colormake oly supports the gcc family compiler so I maintain a fork of colormake.pl in which lots of another compiler names are included (https://bitbucket.org/jgpallero/colormake).
I have made some tests with colormake.py and the new proposed feature and works well. I have added a new line to the patterns vector:
(r'gcc', col_magenta+col_brighten)
It works, but not always. When the compilation order it broken in the makefile as, for example
gcc -c -Wall
file.c -o file.o
The line after '' character is not colorized. And I don't know how fix this bug
Thanks
It would be nice that, as old colormake.pl, colormake.py could colorize the compilation order too. The feature implementation is trivial and only a new (pattern,color scheme) is needed. The former colormake oly supports the gcc family compiler so I maintain a fork of colormake.pl in which lots of another compiler names are included (https://bitbucket.org/jgpallero/colormake).
I have made some tests with colormake.py and the new proposed feature and works well. I have added a new line to the patterns vector:
(r'gcc', col_magenta+col_brighten)
It works, but not always. When the compilation order it broken in the makefile as, for example
gcc -c -Wall
file.c -o file.o
The line after '' character is not colorized. And I don't know how fix this bug
Thanks