Specify rust target in settings.json

This seems to fix the issue described here: https://github.com/rust-lang/vscode-rust/issues/729
This commit is contained in:
Rafael Bachmann 2020-10-01 20:04:57 +02:00 committed by GitHub
parent 3fabd5ce65
commit 9135cb8eef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,5 +5,7 @@
"rust-analyzer.checkOnSave.allTargets": false,
"rust-analyzer.checkOnSave.extraArgs": [
"--bins"
]
],
"rust.target": "thumbv7em-none-eabihf",
"rust.all_targets": false
}