Merge pull request #1806 from jimenezrick/fix-rustc-linter

Fix #1684: Use the correct flag name in rustc linter
This commit is contained in:
w0rp
2018-08-12 09:41:36 +01:00
committed by GitHub
3 changed files with 5 additions and 5 deletions

View File

@@ -148,11 +148,11 @@ rustc *ale-rust-rustc*
g:ale_rust_rustc_options *g:ale_rust_rustc_options*
*b:ale_rust_rustc_options*
Type: |String|
Default: `'-Z no-trans'`
Default: `'-Z no-codegen'`
The variable can be used to change the options passed to `rustc`.
`-Z no-trans` should only work with nightly builds of Rust. Be careful when
`-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.