kendryte-standalone-sdk/kendryte-package.json

100 lines
2.1 KiB
JSON
Raw Normal View History

2019-04-25 04:13:29 -04:00
{
2019-05-29 08:13:15 -04:00
"$schema": "vscode://schemas/CMakeLists",
2019-06-03 09:19:08 -04:00
"name": "kendryte/standalone-sdk",
2019-05-29 08:13:15 -04:00
"version": "develop",
"type": "library",
"extraList": "cmake/ide.cmake",
"include": [
2019-06-04 07:33:03 -04:00
"./lib/bsp/include",
"./lib/drivers/include",
2019-08-12 08:59:28 -04:00
"./lib/utils/include",
"third_party/xtl/include",
"lib/nncase/include"
2019-05-29 08:13:15 -04:00
],
"source": [
"lib/**/*.c",
"lib/**/*.cpp",
"lib/**/*.s",
"lib/**/*.S"
],
"c_flags": [
"-std=gnu11",
2019-09-06 05:56:56 -04:00
"-Wno-pointer-to-int-cast",
"-Wno-old-style-declaration"
2019-05-29 08:13:15 -04:00
],
"cpp_flags": [
"-std=gnu++17"
],
"c_cpp_flags": [
2019-09-06 05:56:56 -04:00
"-mcmodel=medany",
"-mabi=lp64f",
"-march=rv64imafc",
"-fno-common",
"-ffunction-sections",
"-fdata-sections",
"-fstrict-volatile-bitfields",
"-fno-zero-initialized-in-bss",
"-ffast-math",
"-fno-math-errno",
"-fsingle-precision-constant",
2019-09-06 06:04:27 -04:00
"-Os",
2019-09-06 05:56:56 -04:00
"-ggdb",
2019-05-29 08:13:15 -04:00
"-Wall",
"-Werror=all",
"-Wno-error=unused-function",
"-Wno-error=unused-but-set-variable",
"-Wno-error=unused-variable",
"-Wno-error=deprecated-declarations",
2019-08-12 08:59:28 -04:00
"-Wno-multichar",
2019-05-29 08:13:15 -04:00
"-Wextra",
2019-08-12 08:59:28 -04:00
"-Werror=frame-larger-than=32768",
2019-05-29 08:13:15 -04:00
"-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",
2019-08-12 08:59:28 -04:00
"-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"
2019-05-29 08:13:15 -04:00
],
"link_flags": [
2019-09-06 05:56:56 -04:00
"-nostartfiles",
2019-05-29 08:13:15 -04:00
"-static",
2019-09-06 05:56:56 -04:00
"-Wl,--gc-sections",
2019-05-29 08:13:15 -04:00
"-Wl,-static",
2019-09-06 05:56:56 -04:00
"-Wl,-EL",
"-Wl,--no-relax"
2019-05-29 08:13:15 -04:00
],
"ld_file": "lds/kendryte.ld",
"properties": {
"LINKER_LANGUAGE": "C"
},
"__random": "74211554725553837",
"systemLibrary": [
"gcc",
"m",
"c"
2019-08-12 08:59:28 -04:00
],
"definitions": {
"TCB_SPAN_NO_EXCEPTIONS:raw": "",
"TCB_SPAN_NO_CONTRACT_CHECKING:raw": "",
2019-09-05 04:13:39 -04:00
"NNCASE_TARGET:raw": "k210",
"KENDRYTE_SDK_TYPE:raw": "1",
"KENDRYTE_SDK_TYPE_STANDALONE:raw": "1",
2019-09-06 02:31:17 -04:00
"KENDRYTE_SDK_TYPE_FREERTOS:raw": "2",
"KENDRYTE_SDK_RELEASE_DATE:raw": "0"
2019-08-12 08:59:28 -04:00
},
"linkArgumentPrefix": [
"-Wl,--whole-archive"
],
"linkArgumentSuffix": [
"-Wl,--no-whole-archive"
2019-05-29 08:13:15 -04:00
]
2019-04-25 04:13:29 -04:00
}