1" Vim compiler file
2" Compiler:	SGI IRIX 5.3 CC or NCC
3" Maintainer:	David Harrison <[email protected]>
4" Last Change:	2012 Apr 30
5
6if exists("current_compiler")
7  finish
8endif
9let current_compiler = "irix5_cpp"
10let s:keepcpo= &cpo
11set cpo&vim
12
13if exists(":CompilerSet") != 2		" older Vim always used :setlocal
14  command -nargs=* CompilerSet setlocal <args>
15endif
16
17CompilerSet errorformat=%E\"%f\"\\,\ line\ %l:\ error(%n):\ ,
18		    \%E\"%f\"\\,\ line\ %l:\ error(%n):\ %m,
19		    \%W\"%f\"\\,\ line\ %l:\ warning(%n):\ %m,
20		    \%+IC++\ prelinker:\ %m,
21		      \%-Z\ \ %p%^,
22		      \%+C\ %\\{10}%.%#,
23		      \%-G%.%#
24
25let &cpo = s:keepcpo
26unlet s:keepcpo
27