28 lines
785 B
JSON
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"
|
|
]
|
|
}
|
|
]
|
|
} |