You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kern/.vscode/c_cpp_properties.template.json

49 lines
1.4 KiB
JSON

{
"configurations": [
{
"name": "GayBSD kernel x86",
"includePath": [
"${workspaceFolder}/include",
"${workspaceFolder}/build/include"
],
"defines": [
"_KERNEL",
"_GAY_SOURCE=202109L"
],
"compilerArgs": [
"-target=i686",
"-m32",
"-nodefaultlibs",
"-nostartfiles",
"-ffreestanding",
"-Wall",
"-Wstrict-prototypes",
"-Wredundant-decls",
"-Wnested-externs",
"-Wbad-function-cast",
"-Wshadow",
"-Wsign-compare",
"-Wunreachable-code",
"-Wwrite-strings",
"-Wconversion",
"-Waggregate-return",
"-Winline",
"-Wcast-align"
],
"browse": {
"path": [
"${workspaceFolder}/include",
"${workspaceFolder}/build/include"
],
"limitSymbolsToIncludedHeaders": true
},
"compilerPath": "/usr/bin/clang",
"cStandard": "gnu11",
"cppStandard": "c++11",
"intelliSenseMode": "clang-x86",
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
}