summaryrefslogtreecommitdiff
path: root/ale_linters/rust/rustc.vim
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2022-02-20 00:01:06 +0900
committerGitHub <noreply@github.com>2022-02-20 00:01:06 +0900
commit5b1044e2ade71fee4a59f94faa108d99b4e61fb2 (patch)
tree31cbe18f0c4f96ad34cd4b880c335a6fd2fe0ebb /ale_linters/rust/rustc.vim
parent47470eddc277e0a141e6e36a1e2a19045e051d1c (diff)
downloadale-5b1044e2ade71fee4a59f94faa108d99b4e61fb2.zip
Fix 4086 - use stable command options for rustc (#4087)
Diffstat (limited to 'ale_linters/rust/rustc.vim')
-rw-r--r--ale_linters/rust/rustc.vim2
1 files changed, 1 insertions, 1 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,