summaryrefslogtreecommitdiff
path: root/ale_linters/c/clang.vim
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2020-08-20 01:46:29 +0100
committerw0rp <devw0rp@gmail.com>2020-08-20 01:49:14 +0100
commit2b785688ead505dcbc1007374d3dca9914aa247a (patch)
tree6ca8b42b3eedc17e60931a6d22f61d71e8e142e3 /ale_linters/c/clang.vim
parent4d42ebc160d7cccd19c37ffe2ccb97752794be37 (diff)
downloadale-2b785688ead505dcbc1007374d3dca9914aa247a.zip
#3299 Merge gcc and clang into a cc linter
Users can easily be confused when they set some options for a C or C++ compiler, and another compiler is run with different options, which still reports errors. To remedy this, the existing `gcc` and `clang` linters have been replaced with a `cc` linter that will run either compiler. This is a breaking change for ALE v3.0.0.
Diffstat (limited to 'ale_linters/c/clang.vim')
-rw-r--r--ale_linters/c/clang.vim33
1 files changed, 0 insertions, 33 deletions
diff --git a/ale_linters/c/clang.vim b/ale_linters/c/clang.vim
deleted file mode 100644
index 84c105de..00000000
--- a/ale_linters/c/clang.vim
+++ /dev/null
@@ -1,33 +0,0 @@
-" Author: Masahiro H https://github.com/mshr-h
-" Description: clang linter for c files
-
-call ale#Set('c_clang_executable', 'clang')
-call ale#Set('c_clang_options', '-std=c11 -Wall')
-
-function! ale_linters#c#clang#GetCommand(buffer, output) abort
- let l:cflags = ale#c#GetCFlags(a:buffer, a:output)
- let l:ale_flags = ale#Var(a:buffer, 'c_clang_options')
-
- if l:cflags =~# '-std='
- let l:ale_flags = substitute(
- \ l:ale_flags,
- \ '-std=\(c\|gnu\)[0-9]\{2\}',
- \ '',
- \ 'g')
- endif
-
- " -iquote with the directory the file is in makes #include work for
- " headers in the same directory.
- return '%e -S -x c -fsyntax-only'
- \ . ' -iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h'))
- \ . ale#Pad(l:cflags)
- \ . ale#Pad(l:ale_flags) . ' -'
-endfunction
-
-call ale#linter#Define('c', {
-\ 'name': 'clang',
-\ 'output_stream': 'stderr',
-\ 'executable': {b -> ale#Var(b, 'c_clang_executable')},
-\ 'command': {b -> ale#c#RunMakeCommand(b, function('ale_linters#c#clang#GetCommand'))},
-\ 'callback': 'ale#handlers#gcc#HandleGCCFormatWithIncludes',
-\})