-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathkendryte-package.json
99 lines (99 loc) · 2.11 KB
/
kendryte-package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"$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",
"-Wno-old-style-declaration"
],
"cpp_flags": [
"-std=gnu++17"
],
"c_cpp_flags": [
"-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",
"-Os",
"-ggdb",
"-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": [
"-nostartfiles",
"-static",
"-Wl,--gc-sections",
"-Wl,-static",
"-Wl,-EL",
"-Wl,--no-relax"
],
"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",
"KENDRYTE_SDK_TYPE:raw": "1",
"KENDRYTE_SDK_TYPE_STANDALONE:raw": "1",
"KENDRYTE_SDK_TYPE_FREERTOS:raw": "2",
"KENDRYTE_SDK_RELEASE_DATE:raw": "0"
},
"linkArgumentPrefix": [
"-Wl,--whole-archive"
],
"linkArgumentSuffix": [
"-Wl,--no-whole-archive"
]
}