blob: a0ebfe7ba2f483160f099896db0b84c37f3089a5 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim compiler file
2" Compiler: SGI IRIX 6.5 MIPS C (cc)
3" Maintainer: David Harrison <david_jr@users.sourceforge.net>
Bram Moolenaar9a7224b2012-04-30 15:56:52 +02004" Last Change: 2012 Apr 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00005
6if exists("current_compiler")
7 finish
8endif
9let current_compiler = "mips_c"
Bram Moolenaar9a7224b2012-04-30 15:56:52 +020010let s:keepcpo= &cpo
11set cpo&vim
Bram Moolenaar071d4272004-06-13 20:20:40 +000012
13if exists(":CompilerSet") != 2 " older Vim always used :setlocal
14 command -nargs=* CompilerSet setlocal <args>
15endif
16
17CompilerSet errorformat=%Ecc\-%n\ %.%#:\ ERROR\ File\ =\ %f\%\\,\ Line\ =\ %l,
18 \%Wcc\-%n\ %.%#:\ WARNING\ File\ =\ %f\%\\,\ Line\ =\ %l,
19 \%Icc\-%n\ %.%#:\ REMARK\ File\ =\ %f\%\\,\ Line\ =\ %l,
20 \%+C\ \ %m.,
21 \%-Z\ \ %p^,
22 \%-G\\s%#,
23 \%-G%.%#
Bram Moolenaar9a7224b2012-04-30 15:56:52 +020024
25let &cpo = s:keepcpo
26unlet s:keepcpo