irix5_cpp.vim 619 B

123456789101112131415161718192021222324
  1. " Vim compiler file
  2. " Compiler: SGI IRIX 5.3 CC or NCC
  3. " Maintainer: David Harrison <david_jr@users.sourceforge.net>
  4. " Last Change: 2012 Apr 30
  5. " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
  6. if exists("current_compiler")
  7. finish
  8. endif
  9. let current_compiler = "irix5_cpp"
  10. let s:keepcpo= &cpo
  11. set cpo&vim
  12. CompilerSet errorformat=%E\"%f\"\\,\ line\ %l:\ error(%n):\ ,
  13. \%E\"%f\"\\,\ line\ %l:\ error(%n):\ %m,
  14. \%W\"%f\"\\,\ line\ %l:\ warning(%n):\ %m,
  15. \%+IC++\ prelinker:\ %m,
  16. \%-Z\ \ %p%^,
  17. \%+C\ %\\{10}%.%#,
  18. \%-G%.%#
  19. let &cpo = s:keepcpo
  20. unlet s:keepcpo