2016-10-31 05:32:39 +00:00
|
|
|
" Author: Masahiro H https://github.com/mshr-h
|
|
|
|
" Description: clang linter for c files
|
|
|
|
|
|
|
|
" Set this option to change the Clang options for warnings for C.
|
|
|
|
if !exists('g:ale_c_clang_options')
|
|
|
|
" let g:ale_c_clang_options = '-Wall'
|
|
|
|
" let g:ale_c_clang_options = '-std=c99 -Wall'
|
|
|
|
" c11 compatible
|
|
|
|
let g:ale_c_clang_options = '-std=c11 -Wall'
|
|
|
|
endif
|
|
|
|
|
2017-03-11 16:47:32 +00:00
|
|
|
function! ale_linters#c#clang#GetCommand(buffer) abort
|
2017-06-25 19:34:23 +00:00
|
|
|
let l:paths = ale#c#FindLocalHeaderPaths(a:buffer)
|
2017-05-31 19:01:40 +00:00
|
|
|
|
2017-03-11 16:47:32 +00:00
|
|
|
" -iquote with the directory the file is in makes #include work for
|
|
|
|
" headers in the same directory.
|
|
|
|
return 'clang -S -x c -fsyntax-only '
|
2017-05-31 19:01:40 +00:00
|
|
|
\ . '-iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h')) . ' '
|
2017-06-25 19:34:23 +00:00
|
|
|
\ . ale#c#IncludeOptions(l:paths)
|
2017-05-31 19:01:40 +00:00
|
|
|
\ . ale#Var(a:buffer, 'c_clang_options') . ' -'
|
2017-03-11 16:47:32 +00:00
|
|
|
endfunction
|
|
|
|
|
2016-10-31 05:32:39 +00:00
|
|
|
call ale#linter#Define('c', {
|
|
|
|
\ 'name': 'clang',
|
|
|
|
\ 'output_stream': 'stderr',
|
|
|
|
\ 'executable': 'clang',
|
2017-03-11 16:47:32 +00:00
|
|
|
\ 'command_callback': 'ale_linters#c#clang#GetCommand',
|
2017-04-11 19:32:57 +00:00
|
|
|
\ 'callback': 'ale#handlers#gcc#HandleGCCFormat',
|
2016-10-31 05:32:39 +00:00
|
|
|
\})
|