2016-10-31 01:32:39 -04:00
|
|
|
" Author: Masahiro H https://github.com/mshr-h
|
|
|
|
" Description: clang linter for c files
|
|
|
|
|
2017-07-16 16:37:10 -04:00
|
|
|
call ale#Set('c_clang_executable', 'clang')
|
|
|
|
call ale#Set('c_clang_options', '-std=c11 -Wall')
|
|
|
|
|
|
|
|
function! ale_linters#c#clang#GetExecutable(buffer) abort
|
|
|
|
return ale#Var(a:buffer, 'c_clang_executable')
|
|
|
|
endfunction
|
2016-10-31 01:32:39 -04:00
|
|
|
|
2018-03-20 16:49:31 -04:00
|
|
|
function! ale_linters#c#clang#GetCommand(buffer, output) abort
|
2018-03-21 15:44:35 -04:00
|
|
|
let l:cflags = ale#c#GetCFlags(a:buffer, a:output)
|
2017-05-31 15:01:40 -04:00
|
|
|
|
2017-03-11 11:47:32 -05:00
|
|
|
" -iquote with the directory the file is in makes #include work for
|
|
|
|
" headers in the same directory.
|
2017-07-16 16:37:10 -04:00
|
|
|
return ale#Escape(ale_linters#c#clang#GetExecutable(a:buffer))
|
|
|
|
\ . ' -S -x c -fsyntax-only '
|
2017-05-31 15:01:40 -04:00
|
|
|
\ . '-iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h')) . ' '
|
2018-03-20 06:56:46 -04:00
|
|
|
\ . l:cflags
|
2017-05-31 15:01:40 -04:00
|
|
|
\ . ale#Var(a:buffer, 'c_clang_options') . ' -'
|
2017-03-11 11:47:32 -05:00
|
|
|
endfunction
|
|
|
|
|
2016-10-31 01:32:39 -04:00
|
|
|
call ale#linter#Define('c', {
|
|
|
|
\ 'name': 'clang',
|
|
|
|
\ 'output_stream': 'stderr',
|
2017-07-16 19:18:43 -04:00
|
|
|
\ 'executable_callback': 'ale_linters#c#clang#GetExecutable',
|
2018-03-20 16:49:31 -04:00
|
|
|
\ 'command_chain': [
|
2018-03-21 15:44:35 -04:00
|
|
|
\ {'callback': 'ale#c#GetMakeCommand', 'output_stream': 'stdout'},
|
2018-03-20 16:49:31 -04:00
|
|
|
\ {'callback': 'ale_linters#c#clang#GetCommand'}
|
|
|
|
\ ],
|
2017-04-11 15:32:57 -04:00
|
|
|
\ 'callback': 'ale#handlers#gcc#HandleGCCFormat',
|
2016-10-31 01:32:39 -04:00
|
|
|
\})
|