Userspace/.vscode/c_cpp_properties.json
2022-12-24 09:18:45 +02:00

32 lines
1005 B
JSON

{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/libc/include/**",
"${workspaceFolder}/out/system/include/**",
"${workspaceFolder}/libs/include/**",
"${workspaceFolder}/libs/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",
"-nostdinc++",
"-nostdinc",
"-fno-builtin",
"-ffreestanding"
]
}
],
"version": 4
}