diff options
author | w0rp <devw0rp@gmail.com> | 2020-08-09 20:08:42 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2020-08-09 20:08:42 +0100 |
commit | 9e1f511003142db5a1ba05815dc8d40f753c080b (patch) | |
tree | 500304aba1ac20d82d11ba987dede0be1cf23dd0 /doc/ale-c.txt | |
parent | affeed7a87ce54aff9506c0069da1f9f23e3dd01 (diff) | |
download | ale-9e1f511003142db5a1ba05815dc8d40f753c080b.zip |
#3276 - Disable make -n by default again
Diffstat (limited to 'doc/ale-c.txt')
-rw-r--r-- | doc/ale-c.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/ale-c.txt b/doc/ale-c.txt index 53c141b3..fc0d941a 100644 --- a/doc/ale-c.txt +++ b/doc/ale-c.txt @@ -49,12 +49,18 @@ g:ale_c_parse_compile_commands *g:ale_c_parse_compile_commands* g:ale_c_parse_makefile *g:ale_c_parse_makefile* *b:ale_c_parse_makefile* Type: |Number| - Default: `1` + Default: `0` If set to `1`, ALE will run `make -n` to automatically determine flags to set for C or C++ compilers. This can make it easier to determine the correct build flags to use for different files. + WARNING: Running `make -n` automatically can execute arbitrary code, even + though it's supposed to be a dry run, so enable this option with care. You + might prefer to use the buffer-local version of the option instead with + |g:ale_pattern_options|, or you own code for checking which project you're + in. + You might want to disable this option if `make -n` takes too long to run for projects you work on. |