为 ifort 输出着色
我知道 gcc 会为错误消息生成彩色输出。 ifort 中是否也存在类似的功能?
I know gcc produces colored output for the error messages. Does a similar feature exist in ifort as well ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是通过放置在 gcc 之上的外部工具完成的,以便它们可以处理输出并将其着色(例如: colorgcc< /a>)。你可以看一下它,它是用 perl 编写的,看看它是否容易适应 fortan 输出错误。
This is done by external tools which are placed on top of gcc so that they can process output and colorize it (example: colorgcc). You could take a look at it, which is written in perl, and see if it's easy to adapt to fortan output errors..