asterinas/.vscode/settings.json

38 lines
1.0 KiB
JSON
Raw Permalink 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",
"--target",
"riscv64imac-unknown-none-elf",
"--target",
"loongarch64-unknown-none-softfloat",
2023-03-29 07:42:49 +00:00
"-Zbuild-std=core,alloc,compiler_builtins",
"-Zbuild-std-features=compiler-builtins-mem"
],
"rust-analyzer.showUnlinkedFileNotification": false,
"search.exclude": {
"**/*.code-search": false,
"**/bower_components": false,
"**/node_modules": false
},
"search.useIgnoreFiles": false,
"files.exclude": {
"**/.DS_Store": false,
"**/.git": false,
"**/.hg": false,
"**/.svn": false,
"**/CVS": false,
"**/Thumbs.db": false
}
}