我正在使用 vim:make
使用 gfortran 编译 FORTRAN 代码。我喜欢快速修复窗口在编译错误之间跳转的功能。我正在使用这里为 gfortran 建议的错误格式,即:
errorformat=%E%f:%l.%c:,%E%f:%l:,%C,%C%p%*[0123456789^],%ZError: %m,%C%.%#
它检测到大部分错误。我想增加处理以下问题的可能性
- 警告
- 链接器错误
- (奖金)涉及两个位置的错误:(1)和(2)
前段时间,当我尝试为英特尔 FORTRAN 制作错误格式时,我已经阅读了文档。我花了很多时间,只是为了大概的结果。我想添加警告 '%W' 应该不会太难,因为它具有与错误消息相同的结构。对于链接器错误,我不知道它是否会起作用,因为我对源和对象使用不同的文件夹并使用 vpath Makefile 功能。
我在下面附上了一些我希望由 errorformat 处理的 gfortran 编译器的错误消息示例。
非常感谢你的帮助
错误示例(到目前为止由错误格式处理)
folder/file.f90:22.19:
ini=.false.
1
Error: Symbol 'ini' at (1) has no IMPLICIT type
警告示例
folder/file.f90:485.12:
use SomeMod, only: somevar
1
Warning: Unused module variable 'somevar' which has been explicitly imported at (1)
链接器错误示例
/tmp/ccPcF56y.o: In function `MAIN__':
test.f90:(.text+0x8e0): undefined reference to `init_'
../../_build/amod.o: In function `__amod_MOD_dostuff':
amod.f90:(.text+0x3e32): undefined reference to `dothis_'
amod.f90:(.text+0x3e74): undefined reference to `dothat_'
collect2: error: ld returned 1 exit status
多个错误位置示例
file.f90:8.8:
use AMod
1
file.f90:231.25:
call init()
2
Error: 'init' at (1) has a type, which is not consistent with the CALL at (2)