-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig.stdlibs
287 lines (232 loc) · 5.86 KB
/
Kconfig.stdlibs
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
menu "Standard library functions"
config BUILT_IN_STDLIB
bool "Enable Built in versions of stdlib functions"
help
Not all host OSes provide link targets for stdlib functions
Palacios provides internal implementations of these functions, that you can select from this list
config BUILT_IN_MEMSET
bool "memset()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of memset
config BUILT_IN_MEMCPY
bool "memcpy()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of memcpy
config BUILT_IN_MEMMOVE
bool "memmove()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of memmove
config BUILT_IN_MEMCMP
bool "memcmp()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of memcmp
config BUILT_IN_STRLEN
bool "strlen()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strlen
config BUILT_IN_STRNLEN
bool "strnlen()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strnlen
config BUILT_IN_STRCMP
bool "strcmp()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strcmp
config BUILT_IN_STRCASECMP
bool "strcasecmp()"
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strcasecmp
config BUILT_IN_STRNCMP
bool "strncmp()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strncmp
config BUILT_IN_STRNCASECMP
bool "strncasecmp()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strncasecmp
config BUILT_IN_STRCAT
bool "strcat()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strcat
config BUILT_IN_STRNCAT
bool "strncat()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strncat
config BUILT_IN_STRCPY
bool "strcpy()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strcpy
config BUILT_IN_STRNCPY
bool "strncpy()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strncpy
config BUILT_IN_STRDUP
bool "strdup()"
default y
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strdup
config BUILT_IN_STRSTR
bool "strstr()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios internal implementation of strstr
config BUILT_IN_ATOI
bool "atoi()"
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of atoi
config BUILT_IN_ATOX
bool "atox()"
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of atox
config BUILT_IN_STRCHR
bool "strchr()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strchr
config BUILT_IN_STRRCHR
bool "strrchr()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strrchr
config BUILT_IN_STRPBRK
bool "strpbrk()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strpbrk
config BUILT_IN_STR_TOLOWER
bool "str_tolower()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of str_tolower
config BUILT_IN_STR_TOUPPER
bool "str_toupper()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of str_toupper
config BUILT_IN_STRTOI
bool "strtoi()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strtoi
config BUILT_IN_STRTOX
bool "strtox()"
default n
depends on BUILT_IN_STDLIB
help
This enables Palacios' internal implementation of strtox
config BUILT_IN_STDIO
bool "Enable Built in versions of stdio functions"
default n
help
Not all host OSes provide link targets for stdio functions
Palacios provides internal implementations of these functions, that you can select from this list
config BUILT_IN_SPRINTF
bool "sprintf()"
default n
depends on BUILT_IN_STDIO
help
This enables Palacios' internal implementation of sprintf
config BUILT_IN_SNPRINTF
bool "snprintf()"
default n
depends on BUILT_IN_STDIO
help
This enables Palacios' internal implementation of snprintf
config BUILT_IN_VSPRINTF
bool "vsprintf()"
default n
depends on BUILT_IN_STDIO
help
This enables Palacios' internal implementation of vsprintf
config BUILT_IN_VSNRPRINTF
bool "vsnrprintf()"
default n
depends on BUILT_IN_STDIO
help
This enables Palacios' internal implementation of vsnrprintf
config BUILT_IN_USERSPACE_SYMS
bool "Enable build in versions of user space symbols needed"
default y
help
This enables a set of dummy symbols corresponding to user space.
This is needed to link user space libraries such as XED.
config BUILT_IN_STDIN
bool "FILE * stdin;"
default y
depends on BUILT_IN_USERSPACE_SYMS
help
Includes the stdin file pointer
config BUILT_IN_STDOUT
bool "FILE * stdout;"
default y
depends on BUILT_IN_USERSPACE_SYMS
help
Includes the stdout file pointer
config BUILT_IN_STDERR
bool "FILE * stderr;"
default y
depends on BUILT_IN_USERSPACE_SYMS
help
Includes the stderr file pointer
config BUILT_IN_FPRINTF
bool "fprintf();"
default y
depends on BUILT_IN_USERSPACE_SYMS
help
Includes fprintf()
config BUILT_IN_PRINTF
bool "printf();"
default y
depends on BUILT_IN_USERSPACE_SYMS
help
Includes printf();
config BUILT_IN_FFLUSH
bool "fflush();"
default y
depends on BUILT_IN_USERSPACE_SYMS
help
Includes fflush()
config BUILT_IN_ABORT
bool "abort();"
default y
depends on BUILT_IN_USERSPACE_SYMS
help
Includes abort();
endmenu