summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcos <cos>2022-02-18 13:49:54 +0100
committercos <cos>2022-02-18 13:51:28 +0100
commitadf3a0ad560d5d6ccac3ba976ee3a782d9d844e9 (patch)
tree12bf31b136f0d8ce1059da157c4d63f6cbb9442e
parent47470eddc277e0a141e6e36a1e2a19045e051d1c (diff)
downloadale-adf3a0ad560d5d6ccac3ba976ee3a782d9d844e9.zip
Use defaults working with stable rustc (#4086)fix/use_stable_rust
Change default value of `ale_rust_rustc_options` to options available with the stable toolchain.
-rw-r--r--ale_linters/rust/rustc.vim2
-rw-r--r--doc/ale-rust.txt10
2 files changed, 6 insertions, 6 deletions
diff --git a/ale_linters/rust/rustc.vim b/ale_linters/rust/rustc.vim
index f140b58b..bc6431ba 100644
--- a/ale_linters/rust/rustc.vim
+++ b/ale_linters/rust/rustc.vim
@@ -1,7 +1,7 @@
" Author: Daniel Schemala <istjanichtzufassen@gmail.com>
" Description: rustc for rust files
-call ale#Set('rust_rustc_options', '-Z no-codegen')
+call ale#Set('rust_rustc_options', '--emit=mir -o /dev/null')
function! ale_linters#rust#rustc#RustcCommand(buffer) abort
" Try to guess the library search path. If the project is managed by cargo,
diff --git a/doc/ale-rust.txt b/doc/ale-rust.txt
index 707943a7..8e846844 100644
--- a/doc/ale-rust.txt
+++ b/doc/ale-rust.txt
@@ -38,7 +38,7 @@ Integration Information
let g:ale_linters = {'rust': ['rustc', 'rls']}
<
- Also note that rustc 1.12. or later is needed.
+ Also note that rustc 1.18. or later is needed.
===============================================================================
@@ -237,13 +237,13 @@ rustc *ale-rust-rustc*
g:ale_rust_rustc_options *g:ale_rust_rustc_options*
*b:ale_rust_rustc_options*
Type: |String|
- Default: `'-Z no-codegen'`
+ Default: `'--emit=mir -o /dev/null'`
The variable can be used to change the options passed to `rustc`.
- `-Z no-codegen` should only work with nightly builds of Rust. Be careful when
- setting the options, as running `rustc` could execute code or generate
- binary files.
+ Users of nightly builds of Rust might want to use `-Z no-codegen` instead.
+ Be careful when setting the options, as running `rustc` could execute code
+ or generate binary files.
g:ale_rust_ignore_error_codes *g:ale_rust_ignore_error_codes*