summaryrefslogtreecommitdiff
path: root/ale_linters/c
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2019-05-20 13:00:32 +0100
committerw0rp <devw0rp@gmail.com>2019-05-20 13:00:32 +0100
commit5e64acc6abeb61d4a10864b24df763327663f240 (patch)
treee49da2e872346d8f9bbe15995e285f154d61f47e /ale_linters/c
parent4ee28d312976e463a3373f6170cd5a0cdd1bcf3c (diff)
downloadale-5e64acc6abeb61d4a10864b24df763327663f240.zip
Fix #2512 - Use -o /dev/null for gcc linting
Diffstat (limited to 'ale_linters/c')
-rw-r--r--ale_linters/c/gcc.vim6
1 files changed, 5 insertions, 1 deletions
diff --git a/ale_linters/c/gcc.vim b/ale_linters/c/gcc.vim
index d965965d..1df1018e 100644
--- a/ale_linters/c/gcc.vim
+++ b/ale_linters/c/gcc.vim
@@ -9,7 +9,11 @@ function! ale_linters#c#gcc#GetCommand(buffer, output) abort
" -iquote with the directory the file is in makes #include work for
" headers in the same directory.
- return '%e -S -x c -fsyntax-only'
+ "
+ " `-o /dev/null` or `-o null` is needed to catch all errors,
+ " -fsyntax-only doesn't catch everything.
+ return '%e -S -x c'
+ \ . ' -o ' . g:ale#util#nul_file
\ . ' -iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h'))
\ . ale#Pad(l:cflags)
\ . ale#Pad(ale#Var(a:buffer, 'c_gcc_options')) . ' -'