0
|
1 " Vim compiler file
|
|
2 " Compiler: SGI IRIX 6.5 MIPSPro C++ (CC)
|
|
3 " Maintainer: David Harrison <david_jr@users.sourceforge.net>
|
48
|
4 " Last Change: 2012 Apr 30
|
0
|
5
|
|
6 if exists("current_compiler")
|
|
7 finish
|
|
8 endif
|
|
9 let current_compiler = "mipspro_cpp"
|
48
|
10 let s:keepcpo= &cpo
|
|
11 set cpo&vim
|
0
|
12
|
|
13 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
|
|
14 command -nargs=* CompilerSet setlocal <args>
|
|
15 endif
|
|
16
|
|
17 CompilerSet 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%.%#
|
48
|
24
|
|
25 let &cpo = s:keepcpo
|
|
26 unlet s:keepcpo
|