-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlog.txt
398 lines (398 loc) · 20.2 KB
/
log.txt
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
exporting ast from lapi.c
In file included from lapi.c:16:
./lua.h:231:22: warning: variadic functions are not fully supported.
LUA_API const char *(lua_pushfstring) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from lapi.c:18:
In file included from ./lapi.h:12:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
3 warnings generated.
importing ast from lapi.c.cbor
exporting ast from lauxlib.c
In file included from lauxlib.c:27:
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lauxlib.h:68:17: warning: variadic functions are not fully supported.
LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13 warnings generated.
importing ast from lauxlib.c.cbor
exporting ast from lbaselib.c
importing ast from lbaselib.c.cbor
exporting ast from lbitlib.c
importing ast from lbitlib.c.cbor
exporting ast from lcode.c
In file included from lcode.c:18:
In file included from ./lcode.h:10:
In file included from ./llex.h:10:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from lcode.c.cbor
exporting ast from lcorolib.c
importing ast from lcorolib.c.cbor
exporting ast from lctype.c
importing ast from lctype.c.cbor
exporting ast from ldblib.c
importing ast from ldblib.c.cbor
exporting ast from ldebug.c
In file included from ldebug.c:19:
In file included from ./lapi.h:12:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
In file included from ldebug.c:21:
./ldebug.h:32:19: warning: variadic functions are not fully supported.
LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./ldebug.h:32:19: warning: variadic functions are not fully supported.
LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./ldebug.h:32:19: warning: variadic functions are not fully supported.
LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./ldebug.h:32:19: warning: variadic functions are not fully supported.
LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./ldebug.h:32:19: warning: variadic functions are not fully supported.
LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7 warnings generated.
importing ast from ldebug.c.cbor
exporting ast from ldo.c
In file included from ldo.c:19:
In file included from ./lapi.h:12:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from ldo.c.cbor
exporting ast from ldump.c
In file included from ldump.c:17:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from ldump.c.cbor
exporting ast from lfunc.c
In file included from lfunc.c:17:
In file included from ./lfunc.h:11:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from lfunc.c.cbor
exporting ast from lgc.c
In file included from lgc.c:17:
In file included from ./ldebug.h:11:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from lgc.c.cbor
exporting ast from linit.c
importing ast from linit.c.cbor
exporting ast from liolib.c
importing ast from liolib.c.cbor
exporting ast from llex.c
In file included from llex.c:19:
In file included from ./ldebug.h:11:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from llex.c.cbor
exporting ast from lmathlib.c
importing ast from lmathlib.c.cbor
exporting ast from lmem.c
In file included from lmem.c:17:
In file included from ./ldebug.h:11:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from lmem.c.cbor
exporting ast from loadlib.c
importing ast from loadlib.c.cbor
exporting ast from lobject.c
In file included from lobject.c:23:
In file included from ./ldebug.h:11:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
./lobject.h:544:23: warning: variadic functions are not fully supported.
LUAI_FUNC const char *luaO_pushfstring (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./lobject.h:544:23: warning: variadic functions are not fully supported.
LUAI_FUNC const char *luaO_pushfstring (lua_State *L, const char *fmt, ...);
~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4 warnings generated.
importing ast from lobject.c.cbor
exporting ast from lopcodes.c
importing ast from lopcodes.c.cbor
exporting ast from loslib.c
importing ast from loslib.c.cbor
exporting ast from lparser.c
In file included from lparser.c:17:
In file included from ./lcode.h:10:
In file included from ./llex.h:10:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from lparser.c.cbor
exporting ast from lstate.c
In file included from lstate.c:18:
In file included from ./lapi.h:12:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from lstate.c.cbor
exporting ast from lstring.c
In file included from lstring.c:17:
In file included from ./ldebug.h:11:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from lstring.c.cbor
exporting ast from lstrlib.c
importing ast from lstrlib.c.cbor
exporting ast from ltable.c
In file included from ltable.c:31:
In file included from ./ldebug.h:11:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from ltable.c.cbor
exporting ast from ltablib.c
importing ast from ltablib.c.cbor
exporting ast from ltm.c
In file included from ltm.c:17:
In file included from ./ldebug.h:11:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from ltm.c.cbor
exporting ast from lua.c
importing ast from lua.c.cbor
exporting ast from luac.c
In file included from luac.c:21:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from luac.c.cbor
exporting ast from lundump.c
In file included from lundump.c:17:
In file included from ./ldebug.h:11:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from lundump.c.cbor
exporting ast from lutf8lib.c
importing ast from lutf8lib.c.cbor
exporting ast from lvm.c
In file included from lvm.c:21:
In file included from ./ldebug.h:11:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from lvm.c.cbor
exporting ast from lzio.c
In file included from lzio.c:19:
In file included from ./lstate.h:12:
./lobject.h:456:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
UpVal *upvals[1]; /* list of upvalues */
~~~~~~~^~~~~~~~
./lobject.h:449:10: warning: this may be an unsupported flexible array member with size of 1, omit the size if this field is intended to be a flexible array member. See
section 6.7.2.1 of the C99 Standard for more details.
TValue upvalue[1]; /* list of upvalues */
~~~~~~~^~~~~~~~~
2 warnings generated.
importing ast from lzio.c.cbor
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
import successful
translations: 35
successes...: 35
failures....: 0
success