blob: eaf61b2f121a92af0a1137ce5eb8004955a795dc [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim compiler file
2" Compiler: HP aCC
3" Maintainer: Matthias Ulrich <matthias-ulrich@web.de>
4" URL: http://www.subhome.de/vim/hp_acc.vim
5" Last Change: 2004 Mar 27
6"
7" aCC --version says: "HP ANSI C++ B3910B A.03.13"
8" This compiler has been tested on:
9" hp-ux 10.20, hp-ux 11.0 and hp-ux 11.11 (64bit)
10"
11" Tim Brown's aCC is: "HP ANSI C++ B3910B A.03.33"
12" and it also works fine...
13
14if exists("current_compiler")
15 finish
16endif
17let current_compiler = "hp_acc"
18
19if exists(":CompilerSet") != 2 " older Vim always used :setlocal
20 command -nargs=* CompilerSet setlocal <args>
21endif
22
23CompilerSet errorformat=%A%trror\ %n\:\ \"%f\"\\,\ line\ %l\ \#\ %m,
24 \%A%tarning\ %n\:\ \"%f\"\\,\ line\ %l\ \#\ %m\ %#,
25 \%Z\ \ \ \ %p^%.%#,
26 \%-C%.%#
27
28" vim:ts=8:sw=4:cindent