2018-03-31 10:55:20 -04:00
|
|
|
===============================================================================
|
|
|
|
ALE C++ Integration *ale-cpp-options*
|
|
|
|
|
2020-12-04 16:15:32 -05:00
|
|
|
For basic checking of problems with C++ files, ALE offers the `cc` linter,
|
|
|
|
which runs either `clang++`, or `gcc`. See |ale-cpp-cc|.
|
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
Global Options
|
|
|
|
|
|
|
|
The following C options also apply to some C++ linters too.
|
|
|
|
|
2020-12-04 16:15:32 -05:00
|
|
|
* |g:ale_c_always_make|
|
2018-03-31 10:55:20 -04:00
|
|
|
* |g:ale_c_build_dir_names|
|
|
|
|
* |g:ale_c_build_dir|
|
|
|
|
* |g:ale_c_parse_makefile|
|
2018-07-30 17:18:16 -04:00
|
|
|
* |g:ale_c_parse_compile_commands|
|
2018-03-31 10:55:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
===============================================================================
|
2020-12-04 16:15:32 -05:00
|
|
|
astyle *ale-cpp-astyle*
|
2018-03-31 10:55:20 -04:00
|
|
|
|
2020-12-04 16:15:32 -05:00
|
|
|
g:ale_cpp_astyle_executable *g:ale_cpp_astyle_executable*
|
|
|
|
*b:ale_cpp_astyle_executable*
|
2018-03-31 10:55:20 -04:00
|
|
|
Type: |String|
|
2020-12-04 16:15:32 -05:00
|
|
|
Default: `'astyle'`
|
2018-03-31 10:55:20 -04:00
|
|
|
|
2020-12-04 16:15:32 -05:00
|
|
|
This variable can be changed to use a different executable for astyle.
|
2018-03-31 10:55:20 -04:00
|
|
|
|
|
|
|
|
2020-12-04 16:15:32 -05:00
|
|
|
g:ale_cpp_astyle_project_options *g:ale_cpp_astyle_project_options*
|
|
|
|
*b:ale_cpp_astyle_project_options*
|
2018-03-31 10:55:20 -04:00
|
|
|
Type: |String|
|
2020-12-04 16:15:32 -05:00
|
|
|
Default: `''`
|
|
|
|
|
|
|
|
This variable can be changed to use an option file for project level
|
|
|
|
configurations. Provide only the filename of the option file that should be
|
|
|
|
present at the project's root directory.
|
2018-03-31 10:55:20 -04:00
|
|
|
|
2020-12-04 16:15:32 -05:00
|
|
|
For example, if .astylrc is specified, the file is searched in the parent
|
|
|
|
directories of the source file's directory.
|
2018-03-31 10:55:20 -04:00
|
|
|
|
|
|
|
|
2018-08-25 12:13:42 -04:00
|
|
|
===============================================================================
|
2020-12-04 16:15:32 -05:00
|
|
|
cc *ale-cpp-cc*
|
|
|
|
*ale-cpp-gcc*
|
|
|
|
*ale-cpp-clang*
|
2018-08-25 12:13:42 -04:00
|
|
|
|
2020-12-04 16:15:32 -05:00
|
|
|
g:ale_cpp_cc_executable *g:ale_cpp_cc_executable*
|
|
|
|
*b:ale_cpp_cc_executable*
|
2018-08-25 12:13:42 -04:00
|
|
|
Type: |String|
|
2020-12-04 16:15:32 -05:00
|
|
|
Default: `'<auto>'`
|
2018-08-25 12:13:42 -04:00
|
|
|
|
2020-12-04 16:15:32 -05:00
|
|
|
This variable can be changed to use a different executable for a C++ compiler.
|
2018-08-25 12:13:42 -04:00
|
|
|
|
2020-12-04 16:15:32 -05:00
|
|
|
ALE will try to use `clang++` if Clang is available, otherwise ALE will
|
|
|
|
default to checking C++ code with `gcc`.
|
2018-08-25 12:13:42 -04:00
|
|
|
|
2020-12-04 16:15:32 -05:00
|
|
|
|
|
|
|
g:ale_cpp_cc_options *g:ale_cpp_cc_options*
|
|
|
|
*b:ale_cpp_cc_options*
|
2018-08-25 12:13:42 -04:00
|
|
|
Type: |String|
|
2020-12-04 16:15:32 -05:00
|
|
|
Default: `'-std=c++14 -Wall'`
|
|
|
|
|
2022-10-15 15:05:32 -04:00
|
|
|
This variable can be changed to modify flags given to the C++ compiler.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_cc_use_header_lang_flag *g:ale_cpp_cc_use_header_lang_flag*
|
|
|
|
*b:ale_cpp_cc_use_header_lang_flag*
|
|
|
|
Type: |Number|
|
|
|
|
Default: `-1`
|
|
|
|
|
|
|
|
By default, ALE will use `'-x c++-header'` instead of `'-x c++'` for header
|
|
|
|
files when using Clang.
|
|
|
|
|
|
|
|
This variable can be changed to manually activate or deactivate this flag
|
|
|
|
for header files.
|
|
|
|
|
|
|
|
- When set to `-1`, the default beviour is used, `'-x c++-header'` is used with
|
|
|
|
Clang and `'-x c++'` is used with other compilers.
|
|
|
|
- When set to `0`, the flag is deactivated, `'-x c++'` is always used
|
|
|
|
independently of the compiler.
|
|
|
|
- When set to `1`, the flag is activated, `'-x c++-header'` is always used
|
|
|
|
independently of the compiler.
|
|
|
|
|
|
|
|
Gcc does not support `'-x c++-header'` when using `'-'` as input filename,
|
|
|
|
which is what ALE does. This why, by default, ALE only uses `'-x c++-header'`
|
|
|
|
with Clang.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_cc_header_exts *g:ale_cpp_cc_header_exts*
|
|
|
|
*b:ale_cpp_cc_header_exts*
|
|
|
|
Type: |List|
|
|
|
|
Default: `['h', 'hpp']`
|
|
|
|
|
|
|
|
This variable can be changed to modify the list of extensions of the files
|
|
|
|
considered as header files.
|
|
|
|
|
|
|
|
This variable is only used when `'-x c++-header'` is used instead of `'-x c++'`,
|
2023-04-01 16:48:04 -04:00
|
|
|
see |g:ale_cpp_cc_use_header_lang_flag|.
|
2020-12-04 16:15:32 -05:00
|
|
|
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
ccls *ale-cpp-ccls*
|
|
|
|
|
|
|
|
g:ale_cpp_ccls_executable *g:ale_cpp_ccls_executable*
|
|
|
|
*b:ale_cpp_ccls_executable*
|
|
|
|
Type: |String|
|
|
|
|
Default: `'ccls'`
|
|
|
|
|
|
|
|
This variable can be changed to use a different executable for ccls.
|
2018-08-25 12:13:42 -04:00
|
|
|
|
2020-12-04 16:15:32 -05:00
|
|
|
|
|
|
|
g:ale_cpp_ccls_init_options *g:ale_cpp_ccls_init_options*
|
|
|
|
*b:ale_cpp_ccls_init_options*
|
|
|
|
Type: |Dictionary|
|
|
|
|
Default: `{}`
|
|
|
|
|
|
|
|
This variable can be changed to customize ccls initialization options.
|
|
|
|
Example: >
|
|
|
|
{
|
|
|
|
\ 'cacheDirectory': '/tmp/ccls',
|
|
|
|
\ 'cacheFormat': 'binary',
|
|
|
|
\ 'diagnostics': {
|
|
|
|
\ 'onOpen': 0,
|
|
|
|
\ 'opChange': 1000,
|
|
|
|
\ },
|
|
|
|
\ }
|
|
|
|
<
|
|
|
|
Visit https://github.com/MaskRay/ccls/wiki/Initialization-options for all
|
|
|
|
available options and explanations.
|
2018-08-25 12:13:42 -04:00
|
|
|
|
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
===============================================================================
|
|
|
|
clangcheck *ale-cpp-clangcheck*
|
|
|
|
|
|
|
|
`clang-check` will be run only when files are saved to disk, so that
|
|
|
|
`compile_commands.json` files can be used. It is recommended to use this
|
|
|
|
linter in combination with `compile_commands.json` files.
|
|
|
|
Therefore, `clang-check` linter reads the options |g:ale_c_build_dir| and
|
|
|
|
|g:ale_c_build_dir_names|. Also, setting |g:ale_c_build_dir| actually
|
|
|
|
overrides |g:ale_c_build_dir_names|.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_clangcheck_executable *g:ale_cpp_clangcheck_executable*
|
|
|
|
*b:ale_cpp_clangcheck_executable*
|
|
|
|
Type: |String|
|
|
|
|
Default: `'clang-check'`
|
|
|
|
|
|
|
|
This variable can be changed to use a different executable for clangcheck.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_clangcheck_options *g:ale_cpp_clangcheck_options*
|
|
|
|
*b:ale_cpp_clangcheck_options*
|
|
|
|
Type: |String|
|
|
|
|
Default: `''`
|
|
|
|
|
|
|
|
This variable can be changed to modify flags given to clang-check.
|
|
|
|
|
|
|
|
This variable should not be set to point to build subdirectory with
|
|
|
|
`-p path/to/build` option, as it is handled by the |g:ale_c_build_dir|
|
|
|
|
option.
|
|
|
|
|
|
|
|
|
2020-12-04 16:15:32 -05:00
|
|
|
===============================================================================
|
|
|
|
clangd *ale-cpp-clangd*
|
|
|
|
|
|
|
|
g:ale_cpp_clangd_executable *g:ale_cpp_clangd_executable*
|
|
|
|
*b:ale_cpp_clangd_executable*
|
|
|
|
Type: |String|
|
|
|
|
Default: `'clangd'`
|
|
|
|
|
|
|
|
This variable can be changed to use a different executable for clangd.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_clangd_options *g:ale_cpp_clangd_options*
|
|
|
|
*b:ale_cpp_clangd_options*
|
|
|
|
Type: |String|
|
|
|
|
Default: `''`
|
|
|
|
|
|
|
|
This variable can be changed to modify flags given to clangd.
|
|
|
|
|
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
===============================================================================
|
|
|
|
clang-format *ale-cpp-clangformat*
|
|
|
|
|
|
|
|
See |ale-c-clangformat| for information about the available options.
|
|
|
|
Note that the C options are also used for C++.
|
|
|
|
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
clangtidy *ale-cpp-clangtidy*
|
|
|
|
|
|
|
|
`clang-tidy` will be run only when files are saved to disk, so that
|
|
|
|
`compile_commands.json` files can be used. It is recommended to use this
|
|
|
|
linter in combination with `compile_commands.json` files.
|
|
|
|
Therefore, `clang-tidy` linter reads the options |g:ale_c_build_dir| and
|
|
|
|
|g:ale_c_build_dir_names|. Also, setting |g:ale_c_build_dir| actually
|
|
|
|
overrides |g:ale_c_build_dir_names|.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_clangtidy_checks *g:ale_cpp_clangtidy_checks*
|
|
|
|
*b:ale_cpp_clangtidy_checks*
|
|
|
|
Type: |List|
|
2018-11-01 06:03:42 -04:00
|
|
|
Default: `[]`
|
2018-03-31 10:55:20 -04:00
|
|
|
|
|
|
|
The checks to enable for clang-tidy with the `-checks` argument.
|
|
|
|
|
|
|
|
All options will be joined with commas, and escaped appropriately for
|
|
|
|
the shell. The `-checks` flag can be removed entirely by setting this
|
|
|
|
option to an empty List.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_clangtidy_executable *g:ale_cpp_clangtidy_executable*
|
|
|
|
*b:ale_cpp_clangtidy_executable*
|
|
|
|
Type: |String|
|
|
|
|
Default: `'clang-tidy'`
|
|
|
|
|
|
|
|
This variable can be changed to use a different executable for clangtidy.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_clangtidy_options *g:ale_cpp_clangtidy_options*
|
|
|
|
*b:ale_cpp_clangtidy_options*
|
|
|
|
Type: |String|
|
|
|
|
Default: `''`
|
|
|
|
|
2019-08-22 11:36:17 -04:00
|
|
|
This variable can be changed to modify compiler flags given to clang-tidy.
|
2018-03-31 10:55:20 -04:00
|
|
|
|
|
|
|
- Setting this variable to a non-empty string,
|
|
|
|
- and working in a buffer where no compilation database is found using
|
|
|
|
|g:ale_c_build_dir_names| or |g:ale_c_build_dir|,
|
|
|
|
will cause the `--` argument to be passed to `clang-tidy`, which will mean
|
|
|
|
that detection of `compile_commands.json` files for compile command
|
|
|
|
databases will be disabled.
|
|
|
|
Only set this option if you want to control compiler flags
|
|
|
|
entirely manually, and no `compile_commands.json` file is in one
|
|
|
|
of the |g:ale_c_build_dir_names| directories of the project tree.
|
|
|
|
|
|
|
|
|
2019-08-22 11:36:17 -04:00
|
|
|
g:ale_cpp_clangtidy_extra_options *g:ale_cpp_clangtidy_extra_options*
|
|
|
|
*b:ale_cpp_clangtidy_extra_options*
|
|
|
|
Type: |String|
|
|
|
|
Default: `''`
|
|
|
|
|
|
|
|
This variable can be changed to modify flags given to clang-tidy.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_clangtidy_fix_errors *g:ale_cpp_clangtidy_fix_errors*
|
|
|
|
*b:ale_cpp_clangtidy_fix_errors*
|
|
|
|
Type: |Number|
|
|
|
|
Default: `1`
|
|
|
|
|
|
|
|
This variable can be changed to disable the `-fix-errors` option for the
|
|
|
|
|clangtidy| fixer.
|
|
|
|
|
|
|
|
|
2018-08-25 12:13:42 -04:00
|
|
|
===============================================================================
|
|
|
|
clazy *ale-cpp-clazy*
|
|
|
|
|
|
|
|
g:ale_cpp_clazy_executable *g:ale_cpp_clazy_executable*
|
|
|
|
*b:ale_cpp_clazy_executable*
|
|
|
|
Type: |String|
|
|
|
|
Default: `'clazy-standalone'`
|
|
|
|
|
|
|
|
This variable can be changed to use a different executable for clazy.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_clazy_checks *g:ale_cpp_clazy_checks*
|
|
|
|
*b:ale_cpp_clazy_checks*
|
|
|
|
Type: |List|
|
|
|
|
Default: `['level1']`
|
|
|
|
|
|
|
|
The checks to enable for clazy with the `-checks` argument.
|
|
|
|
|
|
|
|
All options will be joined with commas, and escaped appropriately for
|
|
|
|
the shell. The `-checks` flag can be removed entirely by setting this
|
|
|
|
option to an empty List.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_clazy_options *g:ale_cpp_clazy_options*
|
|
|
|
*b:ale_cpp_clazy_options*
|
|
|
|
Type: |String|
|
|
|
|
Default: `''`
|
|
|
|
|
|
|
|
This variable can be changed to modify flags given to clazy.
|
|
|
|
|
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
===============================================================================
|
|
|
|
cppcheck *ale-cpp-cppcheck*
|
|
|
|
|
|
|
|
g:ale_cpp_cppcheck_executable *g:ale_cpp_cppcheck_executable*
|
|
|
|
*b:ale_cpp_cppcheck_executable*
|
|
|
|
Type: |String|
|
|
|
|
Default: `'cppcheck'`
|
|
|
|
|
|
|
|
This variable can be changed to use a different executable for cppcheck.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_cppcheck_options *g:ale_cpp_cppcheck_options*
|
|
|
|
*b:ale_cpp_cppcheck_options*
|
|
|
|
Type: |String|
|
|
|
|
Default: `'--enable=style'`
|
|
|
|
|
|
|
|
This variable can be changed to modify flags given to cppcheck.
|
|
|
|
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
cpplint *ale-cpp-cpplint*
|
|
|
|
|
|
|
|
g:ale_cpp_cpplint_executable *g:ale_cpp_cpplint_executable*
|
|
|
|
*b:ale_cpp_cpplint_executable*
|
|
|
|
Type: |String|
|
|
|
|
Default: `'cpplint'`
|
|
|
|
|
|
|
|
This variable can be changed to use a different executable for cpplint.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_cpplint_options *g:ale_cpp_cpplint_options*
|
|
|
|
*b:ale_cpp_cpplint_options*
|
|
|
|
Type: |String|
|
|
|
|
Default: `''`
|
|
|
|
|
|
|
|
This variable can be changed to modify flags given to cpplint.
|
|
|
|
|
2022-08-08 09:45:56 -04:00
|
|
|
g:ale_c_cpplint_executable *g:ale_c_cpplint_executable*
|
|
|
|
*b:ale_c_cpplint_executable*
|
|
|
|
Type: |String|
|
|
|
|
Default: `'cpplint'`
|
|
|
|
|
|
|
|
This variable can be changed to use a different executable for cpplint.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_c_cpplint_options *g:ale_c_cpplint_options*
|
|
|
|
*b:ale_c_cpplint_options*
|
|
|
|
Type: |String|
|
|
|
|
Default: `''`
|
|
|
|
|
|
|
|
This variable can be changed to modify flags given to cpplint.
|
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
|
2018-06-14 06:31:12 -04:00
|
|
|
===============================================================================
|
|
|
|
cquery *ale-cpp-cquery*
|
|
|
|
|
|
|
|
g:ale_cpp_cquery_executable *g:ale_cpp_cquery_executable*
|
|
|
|
*b:ale_cpp_cquery_executable*
|
|
|
|
Type: |String|
|
|
|
|
Default: `'cquery'`
|
|
|
|
|
|
|
|
This variable can be changed to use a different executable for cquery.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_cquery_cache_directory *g:ale_cpp_cquery_cache_directory*
|
|
|
|
*b:ale_cpp_cquery_cache_directory*
|
|
|
|
Type: |String|
|
|
|
|
Default: `'~/.cache/cquery'`
|
|
|
|
|
|
|
|
This variable can be changed to decide which directory cquery uses for its
|
|
|
|
cache.
|
|
|
|
|
|
|
|
|
2022-08-08 09:45:56 -04:00
|
|
|
===============================================================================
|
|
|
|
cspell *ale-cpp-cspell*
|
|
|
|
|
|
|
|
See |ale-cspell-options|
|
|
|
|
|
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
===============================================================================
|
|
|
|
flawfinder *ale-cpp-flawfinder*
|
|
|
|
|
|
|
|
g:ale_cpp_flawfinder_executable *g:ale_cpp_flawfinder_executable*
|
|
|
|
*b:ale_cpp_flawfinder_executable*
|
|
|
|
Type: |String|
|
|
|
|
Default: `'flawfinder'`
|
|
|
|
|
|
|
|
This variable can be changed to use a different executable for flawfinder.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_flawfinder_minlevel *g:ale_cpp_flawfinder_minlevel*
|
|
|
|
*b:ale_cpp_flawfinder_minlevel*
|
|
|
|
Type: |Number|
|
|
|
|
Default: `1`
|
|
|
|
|
|
|
|
This variable can be changed to ignore risks under the given risk threshold.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_cpp_flawfinder_options *g:ale-cpp-flawfinder*
|
|
|
|
*b:ale-cpp-flawfinder*
|
|
|
|
Type: |String|
|
|
|
|
Default: `''`
|
|
|
|
|
|
|
|
This variable can be used to pass extra options into the flawfinder command.
|
|
|
|
|
|
|
|
|
2018-09-24 20:40:17 -04:00
|
|
|
===============================================================================
|
|
|
|
uncrustify *ale-cpp-uncrustify*
|
|
|
|
|
|
|
|
See |ale-c-uncrustify| for information about the available options.
|
|
|
|
|
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
===============================================================================
|
|
|
|
vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl:
|