Files
nub-os/.vscode/c_cpp_properties.json
nub31 dd3dbc3ab1 ...
2025-09-07 01:27:22 +02:00

28 lines
785 B
JSON

{
"version": 4,
"configurations": [
{
"name": "kernel",
"defines": [
"DEBUG",
"true=1", // https://github.com/microsoft/vscode-cpptools/issues/10696
"false=0" // https://github.com/microsoft/vscode-cpptools/issues/10696
],
"includePath": [
"src/lib"
],
"intelliSenseMode": "linux-gcc-x64",
"compilerPath": "/usr/bin/x86_64-elf-gcc",
"cStandard": "c23",
"compilerArgs": [
"-m64",
"-ffreestanding",
"-nostdinc",
"-nostdlib",
"-Wall",
"-Wextra",
"-Wshadow"
]
}
]
}