22 lines
644 B
Plaintext
22 lines
644 B
Plaintext
# vscode config
|
|
|
|
``` json
|
|
// c_cpp_properties
|
|
{
|
|
"configurations": [
|
|
{
|
|
"name": "Linux",
|
|
"includePath": [
|
|
"${workspaceFolder}/**",
|
|
"${workspaceFolder}/../../ext/toolchain-loongarch64-linux-gnu-gcc8-host-x86_64-2022-07-18/lib/gcc/loongarch64-linux-gnu/8.3.0/include"
|
|
],
|
|
"defines": [],
|
|
"compilerPath": "${workspaceFolder}/../../ext/toolchain-loongarch64-linux-gnu-gcc8-host-x86_64-2022-07-18/bin/loongarch64-linux-gnu-gcc",
|
|
"cStandard": "c99",
|
|
"intelliSenseMode": "linux-gcc-x64"
|
|
}
|
|
],
|
|
"version": 4
|
|
}
|
|
```
|