blob: 4d6bdabeef9b33db6763be1926bcd3e5ab68c1fd [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim compiler file
2" Compiler: SGI IRIX 6.5 MIPSPro C (c89)
3" Maintainer: David Harrison <david_jr@users.sourceforge.net>
Bram Moolenaar9a7224b2012-04-30 15:56:52 +02004" Last Change: 2012 Apr 30
Doug Kearns408281e2024-04-04 22:00:58 +02005" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006
7if exists("current_compiler")
8 finish
9endif
10let current_compiler = "mipspro_c89"
Bram Moolenaar9a7224b2012-04-30 15:56:52 +020011let s:keepcpo= &cpo
12set cpo&vim
Bram Moolenaar071d4272004-06-13 20:20:40 +000013
Bram Moolenaar071d4272004-06-13 20:20:40 +000014CompilerSet errorformat=%Ecc\-%n\ %.%#:\ ERROR\ File\ =\ %f\%\\,\ Line\ =\ %l,
15 \%Wcc\-%n\ %.%#:\ WARNING\ File\ =\ %f\%\\,\ Line\ =\ %l,
16 \%Icc\-%n\ %.%#:\ REMARK\ File\ =\ %f\%\\,\ Line\ =\ %l,
17 \%-Z%p%^,
18 \%+C\ %\\{10}%m%.,
19 \%+C\ \ %m,
20 \%-G\\s%#,
21 \%-G%.%#
Bram Moolenaar9a7224b2012-04-30 15:56:52 +020022
23let &cpo = s:keepcpo
24unlet s:keepcpo