d280dc78ea
These checkers use an existing compilation database so that the actual flags used in the compile are used in the check.
36 lines
764 B
VimL
36 lines
764 B
VimL
if exists("g:loaded_syntastic_c_clang_check_checker")
|
|
finish
|
|
endif
|
|
let g:loaded_syntastic_c_clang_check_checker = 1
|
|
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
function! SyntaxCheckers_c_clang_check_IsAvailable() dict
|
|
return executable(self.getExec())
|
|
endfunction
|
|
|
|
function! SyntaxCheckers_c_clang_check_GetLocList() dict
|
|
let makeprg = self.makeprgBuild({})
|
|
|
|
let errorformat = '%f:%l:%c: %m'
|
|
|
|
let loclist = SyntasticMake({
|
|
\ 'makeprg': makeprg,
|
|
\ 'errorformat': errorformat})
|
|
|
|
call self.setWantSort(1)
|
|
|
|
return loclist
|
|
endfunction
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
\ 'filetype': 'c',
|
|
\ 'name': 'clang_check',
|
|
\ 'exec': 'clang-check'})
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|
|
|
|
" vim: set et sts=4 sw=4:
|