xref: /DragonOS/.vscode/c_cpp_properties.json (revision 4454d1a2dd1f1078750151c028a794cfd9a04a1b)
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        }
19    ],
20    "version": 4
21}