This commit is contained in:
nub31
2025-09-07 01:27:22 +02:00
parent ff12b6abf2
commit dd3dbc3ab1
3 changed files with 19 additions and 9 deletions

View File

@@ -4,14 +4,25 @@
{
"name": "kernel",
"defines": [
"DEBUG"
"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"
"cStandard": "c23",
"compilerArgs": [
"-m64",
"-ffreestanding",
"-nostdinc",
"-nostdlib",
"-Wall",
"-Wextra",
"-Wshadow"
]
}
]
}