blob: 685bd5b13610e23cbd72182b6445c1b76da568e4 [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>
Bram Moolenaara5792f52005-11-23 21:25:05 +00004" URL: http://www.subhome.de/vim/hp_acc.vim
5" Last Change: 2005 Nov 19
Bram Moolenaar071d4272004-06-13 20:20:40 +00006"
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...
Bram Moolenaara5792f52005-11-23 21:25:05 +000013"
14" Now suggestions by aCC are supported (compile flag aCC +w).
15" Thanks to Tim Brown again!!
16"
Bram Moolenaar071d4272004-06-13 20:20:40 +000017
18if exists("current_compiler")
19 finish
20endif
21let current_compiler = "hp_acc"
22
23if exists(":CompilerSet") != 2 " older Vim always used :setlocal
24 command -nargs=* CompilerSet setlocal <args>
25endif
26
27CompilerSet errorformat=%A%trror\ %n\:\ \"%f\"\\,\ line\ %l\ \#\ %m,
Bram Moolenaara5792f52005-11-23 21:25:05 +000028 \%A%tarning\ (suggestion)\ %n\:\ \"%f\"\\,\ line\ %l\ \#\ %m\ %#,
Bram Moolenaar071d4272004-06-13 20:20:40 +000029 \%A%tarning\ %n\:\ \"%f\"\\,\ line\ %l\ \#\ %m\ %#,
30 \%Z\ \ \ \ %p^%.%#,
31 \%-C%.%#
32
33" vim:ts=8:sw=4:cindent