2014-02-08 05:05:16 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: cuda.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"
|
|
|
|
"Author: Hannes Schulz <schulz at ais dot uni-bonn dot de>
|
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2015-07-13 06:22:46 -04:00
|
|
|
if exists('g:loaded_syntastic_cuda_nvcc_checker')
|
2014-02-08 05:05:16 -05:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_syntastic_cuda_nvcc_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
|
|
|
function! SyntaxCheckers_cuda_nvcc_GetLocList() dict
|
|
|
|
if exists('g:syntastic_cuda_arch')
|
|
|
|
let arch_flag = '-arch=' . g:syntastic_cuda_arch
|
|
|
|
else
|
|
|
|
let arch_flag = ''
|
|
|
|
endif
|
|
|
|
let makeprg =
|
|
|
|
\ self.getExecEscaped() . ' ' . arch_flag .
|
|
|
|
\ ' --cuda -O0 -I . -Xcompiler -fsyntax-only ' .
|
|
|
|
\ syntastic#util#shexpand('%') . ' ' . syntastic#c#NullOutput()
|
|
|
|
|
|
|
|
let errorformat =
|
|
|
|
\ '%*[^"]"%f"%*\D%l: %m,'.
|
|
|
|
\ '"%f"%*\D%l: %m,'.
|
|
|
|
\ '%-G%f:%l: (Each undeclared identifier is reported only once,'.
|
|
|
|
\ '%-G%f:%l: for each function it appears in.),'.
|
|
|
|
\ '%f:%l:%c:%m,'.
|
|
|
|
\ '%f(%l):%m,'.
|
|
|
|
\ '%f:%l:%m,'.
|
|
|
|
\ '"%f"\, line %l%*\D%c%*[^ ] %m,'.
|
|
|
|
\ '%D%*\a[%*\d]: Entering directory `%f'','.
|
|
|
|
\ '%X%*\a[%*\d]: Leaving directory `%f'','.
|
|
|
|
\ '%D%*\a: Entering directory `%f'','.
|
|
|
|
\ '%X%*\a: Leaving directory `%f'','.
|
|
|
|
\ '%DMaking %*\a in %f,'.
|
|
|
|
\ '%f|%l| %m'
|
|
|
|
|
2015-01-18 07:58:28 -05:00
|
|
|
if expand('%', 1) =~? '\m\%(.h\|.hpp\|.cuh\)$'
|
2014-02-08 05:05:16 -05:00
|
|
|
if exists('g:syntastic_cuda_check_header')
|
|
|
|
let makeprg =
|
|
|
|
\ 'echo > .syntastic_dummy.cu ; ' .
|
|
|
|
\ self.getExecEscaped() . ' ' . arch_flag .
|
|
|
|
\ ' --cuda -O0 -I . .syntastic_dummy.cu -Xcompiler -fsyntax-only -include ' .
|
|
|
|
\ syntastic#util#shexpand('%') . ' ' . syntastic#c#NullOutput()
|
|
|
|
else
|
|
|
|
return []
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'cuda',
|
|
|
|
\ 'name': 'nvcc'})
|
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
2015-01-18 07:58:28 -05:00
|
|
|
" vim: set sw=4 sts=4 et fdm=marker:
|