summaryrefslogtreecommitdiff
path: root/mnv/runtime/compiler/ifort.mnv
blob: 722ea40b49494d0e5208b0a9df88e2845af3f4a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
" Compiler: Intel Fortran Compiler
" Maintainer: H Xu <xuhdev@gmail.com>
" Version: 0.1.1
" Last Change: 2012 Apr 30
"		2024 Apr 03 by The MNV Project (removed :CompilerSet definition)
" Homepage: http://www.mnv.org/scripts/script.php?script_id=3497
"           https://bitbucket.org/xuhdev/compiler-ifort.mnv
" License: Same as MNV

if exists('current_compiler')
    finish
endif
let current_compiler = 'ifort'
let s:keepcpo= &cpo
set cpo&mnv

CompilerSet errorformat=
            \%A%f(%l):\ %trror\ \#%n:\ %m,
            \%A%f(%l):\ %tarning\ \#%n:\ %m,
            \%-Z%p^,
            \%-G%.%#

let &cpo = s:keepcpo
unlet s:keepcpo