summaryrefslogtreecommitdiff
path: root/mnv/runtime/compiler/gfortran.mnv
diff options
context:
space:
mode:
Diffstat (limited to 'mnv/runtime/compiler/gfortran.mnv')
-rw-r--r--mnv/runtime/compiler/gfortran.mnv24
1 files changed, 24 insertions, 0 deletions
diff --git a/mnv/runtime/compiler/gfortran.mnv b/mnv/runtime/compiler/gfortran.mnv
new file mode 100644
index 0000000000..11067224fe
--- /dev/null
+++ b/mnv/runtime/compiler/gfortran.mnv
@@ -0,0 +1,24 @@
+" Compiler: GNU Fortran Compiler
+" Maintainer: H Xu <xuhdev@gmail.com>
+" Version: 0.1.3
+" 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=3496
+" https://bitbucket.org/xuhdev/compiler-gfortran.mnv
+" License: Same as MNV
+
+if exists('current_compiler')
+ finish
+endif
+let current_compiler = 'gfortran'
+let s:keepcpo= &cpo
+set cpo&mnv
+
+CompilerSet errorformat=
+ \%A%f:%l.%c:,
+ \%-Z%trror:\ %m,
+ \%-Z%tarning:\ %m,
+ \%-C%.%#
+
+let &cpo = s:keepcpo
+unlet s:keepcpo