-
Notifications
You must be signed in to change notification settings - Fork 1.1k
C: clang_check
This file exists only as a historic reference. Documentation for syntastic
checkers is now included in the manual, please see :help syntastic-checkers
in Vim.
Maintainer: Benjamin Bannier bbannier@gmail.com
ClangCheck is a wrapper around Clang's LibTooling. See the official page for details.
- g:syntastic_clang_check_config_file (string; default: '.syntastic_clang_check_config')
- file containing compilation flags (such as defines or include directories), one option per line
By default you can set clang-check parameters in g:syntastic_c_clang_check_args
,
and compilation parameters (defines, optimisation flags, etc.) in the configuration file.
If you want clang-check to use compilation databases (perhaps
generated by CMake or Build EAR) rather than pass compilation flags
explicitly, set g:syntastic_c_clang_check_post_args
to an empty string:
let g:syntastic_c_clang_check_post_args = ""
(configuration files pointed to by g:syntastic_clang_check_config_file
are then ignored).