DragonOS/.vscode/c_cpp_properties.json

23 lines
758 B
JSON
Raw Normal View History

2022-04-07 12:21:28 +00:00
{
"configurations": [
{
"name": "DragonOS",
2022-04-07 12:21:28 +00:00
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/bin/sysroot/usr/include",
"${workspaceFolder}/user/libs/libc/src/include",
"${workspaceFolder}/user/libs/libc/src/include/export"
2022-04-07 12:21:28 +00:00
],
"defines": [
2022-05-11 12:42:30 +00:00
"__x86_64__",
2022-04-15 07:28:00 +00:00
"DEBUG"
2022-04-07 12:21:28 +00:00
],
"compilerPath": "~/opt/dragonos-gcc/gcc-x86_64-unknown-none/bin/x86_64-elf-gcc",
2022-04-07 12:21:28 +00:00
"cStandard": "gnu17",
"cppStandard": "gnu++14",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
2022-04-07 12:21:28 +00:00
}
],
"version": 4
}