asterinas/.vscode/settings.json

19 lines
569 B
JSON
Raw Normal View History

2023-03-09 03:59:41 +00:00
{
"rust-analyzer.cargo.target": "x86_64-unknown-none",
"rust-analyzer.check.extraEnv": {
"RUSTFLAGS": "--check-cfg cfg(ktest) --cfg ktest"
},
"rust-analyzer.check.overrideCommand": [
"cargo",
"check",
"--quiet",
"--message-format=json",
"--manifest-path",
"kernel/Cargo.toml",
2023-03-29 07:42:49 +00:00
"--target",
"x86_64-unknown-none",
2023-03-29 07:42:49 +00:00
"-Zbuild-std=core,alloc,compiler_builtins",
"-Zbuild-std-features=compiler-builtins-mem"
],
"rust-analyzer.showUnlinkedFileNotification": false
2023-03-09 03:59:41 +00:00
}