xref: /DragonOS/.vscode/c_cpp_properties.json (revision cc36cf4a186be834e6c2ab857b9b9501ddb8b1eb)
1{
2    "configurations": [
3        {
4            "name": "DragonOS",
5            "includePath": [
6                "${workspaceFolder}/**",
7                "${workspaceFolder}/user/libs/libc/src/include",
8                "${workspaceFolder}/user/libs/libc/src/include/export"
9            ],
10            "defines": [
11                "__x86_64__",
12                "DEBUG"
13            ],
14            "compilerPath": "~/opt/dragonos-gcc/gcc-x86_64-unknown-none/bin/x86_64-elf-gcc",
15            "cStandard": "gnu17",
16            "cppStandard": "gnu++14",
17            "intelliSenseMode": "linux-gcc-x64",
18            "configurationProvider": "ms-vscode.makefile-tools"
19        }
20    ],
21    "version": 4
22}