79 lines
1.6 KiB
JSON
79 lines
1.6 KiB
JSON
{
|
|
"$schema": "vscode://schemas/CMakeLists",
|
|
"name": "kendryte/standalone-sdk",
|
|
"version": "develop",
|
|
"type": "library",
|
|
"extraList": "cmake/ide.cmake",
|
|
"include": [
|
|
"./lib/bsp/include",
|
|
"./lib/drivers/include",
|
|
"./lib/utils/include",
|
|
"third_party/xtl/include",
|
|
"lib/nncase/include"
|
|
],
|
|
"source": [
|
|
"lib/**/*.c",
|
|
"lib/**/*.cpp",
|
|
"lib/**/*.s",
|
|
"lib/**/*.S"
|
|
],
|
|
"c_flags": [
|
|
"-std=gnu11",
|
|
"-Wno-pointer-to-int-cast"
|
|
],
|
|
"cpp_flags": [
|
|
"-std=gnu++17"
|
|
],
|
|
"c_cpp_flags": [
|
|
"-Wall",
|
|
"-Werror=all",
|
|
"-Wno-error=unused-function",
|
|
"-Wno-error=unused-but-set-variable",
|
|
"-Wno-error=unused-variable",
|
|
"-Wno-error=deprecated-declarations",
|
|
"-Wno-multichar",
|
|
"-Wextra",
|
|
"-Werror=frame-larger-than=32768",
|
|
"-Wno-unused-parameter",
|
|
"-Wno-sign-compare",
|
|
"-Wno-error=missing-braces",
|
|
"-Wno-error=return-type",
|
|
"-Wno-error=pointer-sign",
|
|
"-Wno-missing-braces",
|
|
"-Wno-strict-aliasing",
|
|
"-Wno-implicit-fallthrough",
|
|
"-Wno-missing-field-initializers",
|
|
"-Wno-int-to-pointer-cast",
|
|
"-Wno-error=comment",
|
|
"-Wno-error=logical-not-parentheses",
|
|
"-Wno-error=duplicate-decl-specifier",
|
|
"-Wno-error=parentheses"
|
|
],
|
|
"link_flags": [
|
|
"-static",
|
|
"-Wl,-static",
|
|
"-Wl,-EL"
|
|
],
|
|
"ld_file": "lds/kendryte.ld",
|
|
"properties": {
|
|
"LINKER_LANGUAGE": "C"
|
|
},
|
|
"__random": "74211554725553837",
|
|
"systemLibrary": [
|
|
"gcc",
|
|
"m",
|
|
"c"
|
|
],
|
|
"definitions": {
|
|
"TCB_SPAN_NO_EXCEPTIONS:raw": "",
|
|
"TCB_SPAN_NO_CONTRACT_CHECKING:raw": "",
|
|
"NNCASE_TARGET:raw": "k210"
|
|
},
|
|
"linkArgumentPrefix": [
|
|
"-Wl,--whole-archive"
|
|
],
|
|
"linkArgumentSuffix": [
|
|
"-Wl,--no-whole-archive"
|
|
]
|
|
}
|