经过深度搜索后,我找不到任何简单的方法来为gcc输出的“警告”和“错误”消息上色。
在bash中,我们通常会在.bashrc中添加它:
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
但是csh不允许它。我试过(在.cshrc中):
set GCC_COLORS = 'error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
它不起作用。另一个限制是我无法在我的机器上安装程序,因为我不是root(不能在/ bin中放任何东西)。当然,我可以把一个程序放在我的/ home中并添加一些东西给PATH,但我不喜欢。