Userspace/.vscode/c_cpp_properties.json
2022-12-11 05:36:53 +02:00

26 lines
775 B
JSON

{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/libc/include/**",
"${workspaceFolder}/out/system/include/**"
],
"defines": [
"__debug_vscode__",
"GIT_COMMIT=\"0000000000000000000000000000000000000000\"",
"GIT_COMMIT_SHORT=\"0000000\"",
"DEBUG=\"1\""
],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools",
"compilerArgs": [
"-pipe",
]
}
],
"version": 4
}