Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: fusl/BUILD.gn

Issue 1573403002: Add fusl BUILD.gn rules (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Add symlink Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | fusl/include/bits » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 static_library("fusl") {
viettrungluu 2016/01/11 23:49:09 nit: should have a copyright header (remember that
kulakowski 2016/01/11 23:59:16 Done.
2 configs = []
3
4 cflags = [
5 # Flags from musl
6 "-std=c99",
7 "-ffreestanding",
8 "-nostdinc",
9
10 "-D_XOPEN_SOURCE=700",
11
12 "-Wa,--noexecstack",
13
14 "-fomit-frame-pointer",
15 "-fno-unwind-tables",
16 "-fno-asynchronous-unwind-tables",
17 "-ffunction-sections",
18 "-fdata-sections",
19 "-Werror=implicit-function-declaration",
viettrungluu 2016/01/11 23:49:09 I wonder if these -Werror=... are really needed (o
kulakowski 2016/01/11 23:59:16 Yeah, I'm happy addressing these over time as we r
20 "-Werror=implicit-int",
21 "-Werror=pointer-sign",
22 "-Werror=pointer-arith",
23
24 # Flags we add to get build working
viettrungluu 2016/01/11 23:49:09 We should probably fix these. :) (Not in this cha
kulakowski 2016/01/11 23:59:16 Acknowledged.
25 "-Wno-bitwise-op-parentheses",
26 "-Wno-logical-op-parentheses",
27 "-Wno-shift-op-parentheses",
28 ]
29
30 include_dirs = [ "arch/x86_64" ]
viettrungluu 2016/01/11 23:49:10 I think eventually we'll want include_dirs (and al
kulakowski 2016/01/11 23:59:16 sgtm
31
32 include_dirs += [
viettrungluu 2016/01/11 23:49:09 Can't you just add these to the include_dirs = ...
kulakowski 2016/01/11 23:59:16 Marked as arch specific vs not.
33 "src/internal",
34 "include",
35 ]
36
37 sources = [
38 "src/aio/aio.c",
viettrungluu 2016/01/11 23:49:09 Probably eventually we should have separate BUILD.
kulakowski 2016/01/11 23:59:16 Made full paths. Agreed that we want to split this
39 "src/aio/aio_suspend.c",
40 "src/aio/lio_listio.c",
41 "src/complex/__cexp.c",
42 "src/complex/__cexpf.c",
43 "src/complex/cabs.c",
44 "src/complex/cabsf.c",
45 "src/complex/cabsl.c",
46 "src/complex/cacos.c",
47 "src/complex/cacosf.c",
48 "src/complex/cacosh.c",
49 "src/complex/cacoshf.c",
50 "src/complex/cacoshl.c",
51 "src/complex/cacosl.c",
52 "src/complex/carg.c",
53 "src/complex/cargf.c",
54 "src/complex/cargl.c",
55 "src/complex/casin.c",
56 "src/complex/casinf.c",
57 "src/complex/casinh.c",
58 "src/complex/casinhf.c",
59 "src/complex/casinhl.c",
60 "src/complex/casinl.c",
61 "src/complex/catan.c",
62 "src/complex/catanf.c",
63 "src/complex/catanh.c",
64 "src/complex/catanhf.c",
65 "src/complex/catanhl.c",
66 "src/complex/catanl.c",
67 "src/complex/ccos.c",
68 "src/complex/ccosf.c",
69 "src/complex/ccosh.c",
70 "src/complex/ccoshf.c",
71 "src/complex/ccoshl.c",
72 "src/complex/ccosl.c",
73 "src/complex/cexp.c",
74 "src/complex/cexpf.c",
75 "src/complex/cexpl.c",
76 "src/complex/cimag.c",
77 "src/complex/cimagf.c",
78 "src/complex/cimagl.c",
79 "src/complex/clog.c",
80 "src/complex/clogf.c",
81 "src/complex/clogl.c",
82 "src/complex/conj.c",
83 "src/complex/conjf.c",
84 "src/complex/conjl.c",
85 "src/complex/cpow.c",
86 "src/complex/cpowf.c",
87 "src/complex/cpowl.c",
88 "src/complex/cproj.c",
89 "src/complex/cprojf.c",
90 "src/complex/cprojl.c",
91 "src/complex/creal.c",
92 "src/complex/crealf.c",
93 "src/complex/creall.c",
94 "src/complex/csin.c",
95 "src/complex/csinf.c",
96 "src/complex/csinh.c",
97 "src/complex/csinhf.c",
98 "src/complex/csinhl.c",
99 "src/complex/csinl.c",
100 "src/complex/csqrt.c",
101 "src/complex/csqrtf.c",
102 "src/complex/csqrtl.c",
103 "src/complex/ctan.c",
104 "src/complex/ctanf.c",
105 "src/complex/ctanh.c",
106 "src/complex/ctanhf.c",
107 "src/complex/ctanhl.c",
108 "src/complex/ctanl.c",
109 "src/conf/confstr.c",
110 "src/conf/fpathconf.c",
111 "src/conf/legacy.c",
112 "src/conf/pathconf.c",
113 "src/conf/sysconf.c",
114 "src/crypt/crypt.c",
115 "src/crypt/crypt_blowfish.c",
116 "src/crypt/crypt_des.c",
117 "src/crypt/crypt_md5.c",
118 "src/crypt/crypt_r.c",
119 "src/crypt/crypt_sha256.c",
120 "src/crypt/crypt_sha512.c",
121 "src/crypt/encrypt.c",
122 "src/ctype/__ctype_b_loc.c",
123 "src/ctype/__ctype_get_mb_cur_max.c",
124 "src/ctype/__ctype_tolower_loc.c",
125 "src/ctype/__ctype_toupper_loc.c",
126 "src/ctype/isalnum.c",
127 "src/ctype/isalpha.c",
128 "src/ctype/isascii.c",
129 "src/ctype/isblank.c",
130 "src/ctype/iscntrl.c",
131 "src/ctype/isdigit.c",
132 "src/ctype/isgraph.c",
133 "src/ctype/islower.c",
134 "src/ctype/isprint.c",
135 "src/ctype/ispunct.c",
136 "src/ctype/isspace.c",
137 "src/ctype/isupper.c",
138 "src/ctype/iswalnum.c",
139 "src/ctype/iswalpha.c",
140 "src/ctype/iswblank.c",
141 "src/ctype/iswcntrl.c",
142 "src/ctype/iswctype.c",
143 "src/ctype/iswdigit.c",
144 "src/ctype/iswgraph.c",
145 "src/ctype/iswlower.c",
146 "src/ctype/iswprint.c",
147 "src/ctype/iswpunct.c",
148 "src/ctype/iswspace.c",
149 "src/ctype/iswupper.c",
150 "src/ctype/iswxdigit.c",
151 "src/ctype/isxdigit.c",
152 "src/ctype/toascii.c",
153 "src/ctype/tolower.c",
154 "src/ctype/toupper.c",
155 "src/ctype/towctrans.c",
156 "src/ctype/wcswidth.c",
157 "src/ctype/wctrans.c",
158 "src/ctype/wcwidth.c",
159 "src/dirent/__getdents.c",
160 "src/dirent/alphasort.c",
161 "src/dirent/closedir.c",
162 "src/dirent/dirfd.c",
163 "src/dirent/fdopendir.c",
164 "src/dirent/opendir.c",
165 "src/dirent/readdir.c",
166 "src/dirent/readdir_r.c",
167 "src/dirent/rewinddir.c",
168 "src/dirent/scandir.c",
169 "src/dirent/seekdir.c",
170 "src/dirent/telldir.c",
171 "src/dirent/versionsort.c",
172 "src/env/__environ.c",
173 "src/env/__init_tls.c",
174 "src/env/__libc_start_main.c",
175 "src/env/__reset_tls.c",
176 "src/env/__stack_chk_fail.c",
177 "src/env/clearenv.c",
178 "src/env/getenv.c",
179 "src/env/putenv.c",
180 "src/env/setenv.c",
181 "src/env/unsetenv.c",
182 "src/errno/__errno_location.c",
183 "src/errno/strerror.c",
184 "src/exit/_Exit.c",
185 "src/exit/abort.c",
186 "src/exit/assert.c",
187 "src/exit/at_quick_exit.c",
188 "src/exit/atexit.c",
189 "src/exit/exit.c",
190 "src/exit/quick_exit.c",
191 "src/fcntl/creat.c",
192 "src/fcntl/fcntl.c",
193 "src/fcntl/open.c",
194 "src/fcntl/openat.c",
195 "src/fcntl/posix_fadvise.c",
196 "src/fcntl/posix_fallocate.c",
197 "src/fenv/__flt_rounds.c",
198 "src/fenv/fegetexceptflag.c",
199 "src/fenv/feholdexcept.c",
200 "src/fenv/fenv.c",
201 "src/fenv/fesetexceptflag.c",
202 "src/fenv/fesetround.c",
203 "src/fenv/feupdateenv.c",
204 "src/internal/floatscan.c",
205 "src/internal/intscan.c",
206 "src/internal/libc.c",
207 "src/internal/procfdname.c",
208 "src/internal/shgetc.c",
209 "src/internal/syscall.c",
210 "src/internal/syscall_ret.c",
211 "src/internal/vdso.c",
212 "src/internal/version.c",
213 "src/ipc/ftok.c",
214 "src/ipc/msgctl.c",
215 "src/ipc/msgget.c",
216 "src/ipc/msgrcv.c",
217 "src/ipc/msgsnd.c",
218 "src/ipc/semctl.c",
219 "src/ipc/semget.c",
220 "src/ipc/semop.c",
221 "src/ipc/semtimedop.c",
222 "src/ipc/shmat.c",
223 "src/ipc/shmctl.c",
224 "src/ipc/shmdt.c",
225 "src/ipc/shmget.c",
226 "src/ldso/dl_iterate_phdr.c",
227 "src/ldso/dladdr.c",
228 "src/ldso/dlinfo.c",
229 "src/ldso/dlstart.c",
230 "src/ldso/dlsym.c",
231 "src/ldso/dynlink.c",
232 "src/ldso/tlsdesc.c",
233 "src/legacy/cuserid.c",
234 "src/legacy/daemon.c",
235 "src/legacy/err.c",
236 "src/legacy/euidaccess.c",
237 "src/legacy/ftw.c",
238 "src/legacy/futimes.c",
239 "src/legacy/getdtablesize.c",
240 "src/legacy/getloadavg.c",
241 "src/legacy/getpagesize.c",
242 "src/legacy/getpass.c",
243 "src/legacy/getusershell.c",
244 "src/legacy/isastream.c",
245 "src/legacy/lutimes.c",
246 "src/legacy/ulimit.c",
247 "src/legacy/utmpx.c",
248 "src/legacy/valloc.c",
249 "src/linux/adjtime.c",
250 "src/linux/adjtimex.c",
251 "src/linux/arch_prctl.c",
252 "src/linux/brk.c",
253 "src/linux/cache.c",
254 "src/linux/cap.c",
255 "src/linux/chroot.c",
256 "src/linux/clock_adjtime.c",
257 "src/linux/clone.c",
258 "src/linux/epoll.c",
259 "src/linux/eventfd.c",
260 "src/linux/fallocate.c",
261 "src/linux/fanotify.c",
262 "src/linux/flock.c",
263 "src/linux/inotify.c",
264 "src/linux/ioperm.c",
265 "src/linux/iopl.c",
266 "src/linux/klogctl.c",
267 "src/linux/module.c",
268 "src/linux/mount.c",
269 "src/linux/personality.c",
270 "src/linux/pivot_root.c",
271 "src/linux/ppoll.c",
272 "src/linux/prctl.c",
273 "src/linux/prlimit.c",
274 "src/linux/process_vm.c",
275 "src/linux/ptrace.c",
276 "src/linux/quotactl.c",
277 "src/linux/readahead.c",
278 "src/linux/reboot.c",
279 "src/linux/remap_file_pages.c",
280 "src/linux/sbrk.c",
281 "src/linux/sendfile.c",
282 "src/linux/setfsgid.c",
283 "src/linux/setfsuid.c",
284 "src/linux/setgroups.c",
285 "src/linux/sethostname.c",
286 "src/linux/setns.c",
287 "src/linux/settimeofday.c",
288 "src/linux/signalfd.c",
289 "src/linux/splice.c",
290 "src/linux/stime.c",
291 "src/linux/swap.c",
292 "src/linux/sync_file_range.c",
293 "src/linux/syncfs.c",
294 "src/linux/sysinfo.c",
295 "src/linux/tee.c",
296 "src/linux/timerfd.c",
297 "src/linux/unshare.c",
298 "src/linux/utimes.c",
299 "src/linux/vhangup.c",
300 "src/linux/vmsplice.c",
301 "src/linux/wait3.c",
302 "src/linux/wait4.c",
303 "src/linux/xattr.c",
304 "src/locale/__lctrans.c",
305 "src/locale/__mo_lookup.c",
306 "src/locale/bind_textdomain_codeset.c",
307 "src/locale/c_locale.c",
308 "src/locale/catclose.c",
309 "src/locale/catgets.c",
310 "src/locale/catopen.c",
311 "src/locale/dcngettext.c",
312 "src/locale/duplocale.c",
313 "src/locale/freelocale.c",
314 "src/locale/iconv.c",
315 "src/locale/langinfo.c",
316 "src/locale/locale_map.c",
317 "src/locale/localeconv.c",
318 "src/locale/newlocale.c",
319 "src/locale/pleval.c",
320 "src/locale/setlocale.c",
321 "src/locale/strcoll.c",
322 "src/locale/strfmon.c",
323 "src/locale/strxfrm.c",
324 "src/locale/textdomain.c",
325 "src/locale/uselocale.c",
326 "src/locale/wcscoll.c",
327 "src/locale/wcsxfrm.c",
328 "src/malloc/__brk.c",
329 "src/malloc/aligned_alloc.c",
330 "src/malloc/calloc.c",
331 "src/malloc/expand_heap.c",
332 "src/malloc/lite_malloc.c",
333 "src/malloc/malloc.c",
334 "src/malloc/malloc_usable_size.c",
335 "src/malloc/memalign.c",
336 "src/malloc/posix_memalign.c",
337 "src/math/__cos.c",
338 "src/math/__cosdf.c",
339 "src/math/__cosl.c",
340 "src/math/__expo2.c",
341 "src/math/__expo2f.c",
342 "src/math/__fpclassify.c",
343 "src/math/__fpclassifyf.c",
344 "src/math/__fpclassifyl.c",
345 "src/math/__invtrigl.c",
346 "src/math/__polevll.c",
347 "src/math/__rem_pio2.c",
348 "src/math/__rem_pio2_large.c",
349 "src/math/__rem_pio2f.c",
350 "src/math/__rem_pio2l.c",
351 "src/math/__signbit.c",
352 "src/math/__signbitf.c",
353 "src/math/__signbitl.c",
354 "src/math/__sin.c",
355 "src/math/__sindf.c",
356 "src/math/__sinl.c",
357 "src/math/__tan.c",
358 "src/math/__tandf.c",
359 "src/math/__tanl.c",
360 "src/math/acos.c",
361 "src/math/acosf.c",
362 "src/math/acosh.c",
363 "src/math/acoshf.c",
364 "src/math/acoshl.c",
365 "src/math/acosl.c",
366 "src/math/asin.c",
367 "src/math/asinf.c",
368 "src/math/asinh.c",
369 "src/math/asinhf.c",
370 "src/math/asinhl.c",
371 "src/math/asinl.c",
372 "src/math/atan.c",
373 "src/math/atan2.c",
374 "src/math/atan2f.c",
375 "src/math/atan2l.c",
376 "src/math/atanf.c",
377 "src/math/atanh.c",
378 "src/math/atanhf.c",
379 "src/math/atanhl.c",
380 "src/math/atanl.c",
381 "src/math/cbrt.c",
382 "src/math/cbrtf.c",
383 "src/math/cbrtl.c",
384 "src/math/ceil.c",
385 "src/math/ceilf.c",
386 "src/math/ceill.c",
387 "src/math/copysign.c",
388 "src/math/copysignf.c",
389 "src/math/copysignl.c",
390 "src/math/cos.c",
391 "src/math/cosf.c",
392 "src/math/cosh.c",
393 "src/math/coshf.c",
394 "src/math/coshl.c",
395 "src/math/cosl.c",
396 "src/math/erf.c",
397 "src/math/erff.c",
398 "src/math/erfl.c",
399 "src/math/exp.c",
400 "src/math/exp10.c",
401 "src/math/exp10f.c",
402 "src/math/exp10l.c",
403 "src/math/exp2.c",
404 "src/math/exp2f.c",
405 "src/math/exp2l.c",
406 "src/math/expf.c",
407 "src/math/expl.c",
408 "src/math/expm1.c",
409 "src/math/expm1f.c",
410 "src/math/expm1l.c",
411 "src/math/fabs.c",
412 "src/math/fabsf.c",
413 "src/math/fabsl.c",
414 "src/math/fdim.c",
415 "src/math/fdimf.c",
416 "src/math/fdiml.c",
417 "src/math/finite.c",
418 "src/math/finitef.c",
419 "src/math/floor.c",
420 "src/math/floorf.c",
421 "src/math/floorl.c",
422 "src/math/fma.c",
423 "src/math/fmaf.c",
424 "src/math/fmal.c",
425 "src/math/fmax.c",
426 "src/math/fmaxf.c",
427 "src/math/fmaxl.c",
428 "src/math/fmin.c",
429 "src/math/fminf.c",
430 "src/math/fminl.c",
431 "src/math/fmod.c",
432 "src/math/fmodf.c",
433 "src/math/fmodl.c",
434 "src/math/frexp.c",
435 "src/math/frexpf.c",
436 "src/math/frexpl.c",
437 "src/math/hypot.c",
438 "src/math/hypotf.c",
439 "src/math/hypotl.c",
440 "src/math/ilogb.c",
441 "src/math/ilogbf.c",
442 "src/math/ilogbl.c",
443 "src/math/j0.c",
444 "src/math/j0f.c",
445 "src/math/j1.c",
446 "src/math/j1f.c",
447 "src/math/jn.c",
448 "src/math/jnf.c",
449 "src/math/ldexp.c",
450 "src/math/ldexpf.c",
451 "src/math/ldexpl.c",
452 "src/math/lgamma.c",
453 "src/math/lgamma_r.c",
454 "src/math/lgammaf.c",
455 "src/math/lgammaf_r.c",
456 "src/math/lgammal.c",
457 "src/math/llrint.c",
458 "src/math/llrintf.c",
459 "src/math/llrintl.c",
460 "src/math/llround.c",
461 "src/math/llroundf.c",
462 "src/math/llroundl.c",
463 "src/math/log.c",
464 "src/math/log10.c",
465 "src/math/log10f.c",
466 "src/math/log10l.c",
467 "src/math/log1p.c",
468 "src/math/log1pf.c",
469 "src/math/log1pl.c",
470 "src/math/log2.c",
471 "src/math/log2f.c",
472 "src/math/log2l.c",
473 "src/math/logb.c",
474 "src/math/logbf.c",
475 "src/math/logbl.c",
476 "src/math/logf.c",
477 "src/math/logl.c",
478 "src/math/lrint.c",
479 "src/math/lrintf.c",
480 "src/math/lrintl.c",
481 "src/math/lround.c",
482 "src/math/lroundf.c",
483 "src/math/lroundl.c",
484 "src/math/modf.c",
485 "src/math/modff.c",
486 "src/math/modfl.c",
487 "src/math/nan.c",
488 "src/math/nanf.c",
489 "src/math/nanl.c",
490 "src/math/nearbyint.c",
491 "src/math/nearbyintf.c",
492 "src/math/nearbyintl.c",
493 "src/math/nextafter.c",
494 "src/math/nextafterf.c",
495 "src/math/nextafterl.c",
496 "src/math/nexttoward.c",
497 "src/math/nexttowardf.c",
498 "src/math/nexttowardl.c",
499 "src/math/pow.c",
500 "src/math/powf.c",
501 "src/math/powl.c",
502 "src/math/remainder.c",
503 "src/math/remainderf.c",
504 "src/math/remainderl.c",
505 "src/math/remquo.c",
506 "src/math/remquof.c",
507 "src/math/remquol.c",
508 "src/math/rint.c",
509 "src/math/rintf.c",
510 "src/math/rintl.c",
511 "src/math/round.c",
512 "src/math/roundf.c",
513 "src/math/roundl.c",
514 "src/math/scalb.c",
515 "src/math/scalbf.c",
516 "src/math/scalbln.c",
517 "src/math/scalblnf.c",
518 "src/math/scalblnl.c",
519 "src/math/scalbn.c",
520 "src/math/scalbnf.c",
521 "src/math/scalbnl.c",
522 "src/math/signgam.c",
523 "src/math/significand.c",
524 "src/math/significandf.c",
525 "src/math/sin.c",
526 "src/math/sincos.c",
527 "src/math/sincosf.c",
528 "src/math/sincosl.c",
529 "src/math/sinf.c",
530 "src/math/sinh.c",
531 "src/math/sinhf.c",
532 "src/math/sinhl.c",
533 "src/math/sinl.c",
534 "src/math/sqrt.c",
535 "src/math/sqrtf.c",
536 "src/math/sqrtl.c",
537 "src/math/tan.c",
538 "src/math/tanf.c",
539 "src/math/tanh.c",
540 "src/math/tanhf.c",
541 "src/math/tanhl.c",
542 "src/math/tanl.c",
543 "src/math/tgamma.c",
544 "src/math/tgammaf.c",
545 "src/math/tgammal.c",
546 "src/math/trunc.c",
547 "src/math/truncf.c",
548 "src/math/truncl.c",
549 "src/misc/a64l.c",
550 "src/misc/basename.c",
551 "src/misc/dirname.c",
552 "src/misc/ffs.c",
553 "src/misc/ffsl.c",
554 "src/misc/ffsll.c",
555 "src/misc/fmtmsg.c",
556 "src/misc/forkpty.c",
557 "src/misc/get_current_dir_name.c",
558 "src/misc/getauxval.c",
559 "src/misc/getdomainname.c",
560 "src/misc/gethostid.c",
561 "src/misc/getopt.c",
562 "src/misc/getopt_long.c",
563 "src/misc/getpriority.c",
564 "src/misc/getresgid.c",
565 "src/misc/getresuid.c",
566 "src/misc/getrlimit.c",
567 "src/misc/getrusage.c",
568 "src/misc/getsubopt.c",
569 "src/misc/initgroups.c",
570 "src/misc/ioctl.c",
571 "src/misc/issetugid.c",
572 "src/misc/lockf.c",
573 "src/misc/login_tty.c",
574 "src/misc/mntent.c",
575 "src/misc/nftw.c",
576 "src/misc/openpty.c",
577 "src/misc/ptsname.c",
578 "src/misc/pty.c",
579 "src/misc/realpath.c",
580 "src/misc/setdomainname.c",
581 "src/misc/setpriority.c",
582 "src/misc/setrlimit.c",
583 "src/misc/syscall.c",
584 "src/misc/syslog.c",
585 "src/misc/uname.c",
586 "src/misc/wordexp.c",
587 "src/mman/madvise.c",
588 "src/mman/mincore.c",
589 "src/mman/mlock.c",
590 "src/mman/mlockall.c",
591 "src/mman/mmap.c",
592 "src/mman/mprotect.c",
593 "src/mman/mremap.c",
594 "src/mman/msync.c",
595 "src/mman/munlock.c",
596 "src/mman/munlockall.c",
597 "src/mman/munmap.c",
598 "src/mman/posix_madvise.c",
599 "src/mman/shm_open.c",
600 "src/mq/mq_close.c",
601 "src/mq/mq_getattr.c",
602 "src/mq/mq_notify.c",
603 "src/mq/mq_open.c",
604 "src/mq/mq_receive.c",
605 "src/mq/mq_send.c",
606 "src/mq/mq_setattr.c",
607 "src/mq/mq_timedreceive.c",
608 "src/mq/mq_timedsend.c",
609 "src/mq/mq_unlink.c",
610 "src/multibyte/btowc.c",
611 "src/multibyte/c16rtomb.c",
612 "src/multibyte/c32rtomb.c",
613 "src/multibyte/internal.c",
614 "src/multibyte/mblen.c",
615 "src/multibyte/mbrlen.c",
616 "src/multibyte/mbrtoc16.c",
617 "src/multibyte/mbrtoc32.c",
618 "src/multibyte/mbrtowc.c",
619 "src/multibyte/mbsinit.c",
620 "src/multibyte/mbsnrtowcs.c",
621 "src/multibyte/mbsrtowcs.c",
622 "src/multibyte/mbstowcs.c",
623 "src/multibyte/mbtowc.c",
624 "src/multibyte/wcrtomb.c",
625 "src/multibyte/wcsnrtombs.c",
626 "src/multibyte/wcsrtombs.c",
627 "src/multibyte/wcstombs.c",
628 "src/multibyte/wctob.c",
629 "src/multibyte/wctomb.c",
630 "src/network/accept.c",
631 "src/network/accept4.c",
632 "src/network/bind.c",
633 "src/network/connect.c",
634 "src/network/dn_comp.c",
635 "src/network/dn_expand.c",
636 "src/network/dn_skipname.c",
637 "src/network/dns_parse.c",
638 "src/network/ent.c",
639 "src/network/ether.c",
640 "src/network/freeaddrinfo.c",
641 "src/network/gai_strerror.c",
642 "src/network/getaddrinfo.c",
643 "src/network/gethostbyaddr.c",
644 "src/network/gethostbyaddr_r.c",
645 "src/network/gethostbyname.c",
646 "src/network/gethostbyname2.c",
647 "src/network/gethostbyname2_r.c",
648 "src/network/gethostbyname_r.c",
649 "src/network/getifaddrs.c",
650 "src/network/getnameinfo.c",
651 "src/network/getpeername.c",
652 "src/network/getservbyname.c",
653 "src/network/getservbyname_r.c",
654 "src/network/getservbyport.c",
655 "src/network/getservbyport_r.c",
656 "src/network/getsockname.c",
657 "src/network/getsockopt.c",
658 "src/network/h_errno.c",
659 "src/network/herror.c",
660 "src/network/hstrerror.c",
661 "src/network/htonl.c",
662 "src/network/htons.c",
663 "src/network/if_freenameindex.c",
664 "src/network/if_indextoname.c",
665 "src/network/if_nameindex.c",
666 "src/network/if_nametoindex.c",
667 "src/network/in6addr_any.c",
668 "src/network/in6addr_loopback.c",
669 "src/network/inet_addr.c",
670 "src/network/inet_aton.c",
671 "src/network/inet_legacy.c",
672 "src/network/inet_ntoa.c",
673 "src/network/inet_ntop.c",
674 "src/network/inet_pton.c",
675 "src/network/listen.c",
676 "src/network/lookup_ipliteral.c",
677 "src/network/lookup_name.c",
678 "src/network/lookup_serv.c",
679 "src/network/netlink.c",
680 "src/network/netname.c",
681 "src/network/ns_parse.c",
682 "src/network/ntohl.c",
683 "src/network/ntohs.c",
684 "src/network/proto.c",
685 "src/network/recv.c",
686 "src/network/recvfrom.c",
687 "src/network/recvmmsg.c",
688 "src/network/recvmsg.c",
689 "src/network/res_init.c",
690 "src/network/res_mkquery.c",
691 "src/network/res_msend.c",
692 "src/network/res_query.c",
693 "src/network/res_querydomain.c",
694 "src/network/res_send.c",
695 "src/network/res_state.c",
696 "src/network/send.c",
697 "src/network/sendmmsg.c",
698 "src/network/sendmsg.c",
699 "src/network/sendto.c",
700 "src/network/serv.c",
701 "src/network/setsockopt.c",
702 "src/network/shutdown.c",
703 "src/network/sockatmark.c",
704 "src/network/socket.c",
705 "src/network/socketpair.c",
706 "src/passwd/fgetgrent.c",
707 "src/passwd/fgetpwent.c",
708 "src/passwd/fgetspent.c",
709 "src/passwd/getgr_a.c",
710 "src/passwd/getgr_r.c",
711 "src/passwd/getgrent.c",
712 "src/passwd/getgrent_a.c",
713 "src/passwd/getgrouplist.c",
714 "src/passwd/getpw_a.c",
715 "src/passwd/getpw_r.c",
716 "src/passwd/getpwent.c",
717 "src/passwd/getpwent_a.c",
718 "src/passwd/getspent.c",
719 "src/passwd/getspnam.c",
720 "src/passwd/getspnam_r.c",
721 "src/passwd/lckpwdf.c",
722 "src/passwd/nscd_query.c",
723 "src/passwd/putgrent.c",
724 "src/passwd/putpwent.c",
725 "src/passwd/putspent.c",
726 "src/prng/__rand48_step.c",
727 "src/prng/__seed48.c",
728 "src/prng/drand48.c",
729 "src/prng/lcong48.c",
730 "src/prng/lrand48.c",
731 "src/prng/mrand48.c",
732 "src/prng/rand.c",
733 "src/prng/rand_r.c",
734 "src/prng/random.c",
735 "src/prng/seed48.c",
736 "src/prng/srand48.c",
737 "src/process/execl.c",
738 "src/process/execle.c",
739 "src/process/execlp.c",
740 "src/process/execv.c",
741 "src/process/execve.c",
742 "src/process/execvp.c",
743 "src/process/fexecve.c",
744 "src/process/fork.c",
745 "src/process/posix_spawn.c",
746 "src/process/posix_spawn_file_actions_addclose.c",
747 "src/process/posix_spawn_file_actions_adddup2.c",
748 "src/process/posix_spawn_file_actions_addopen.c",
749 "src/process/posix_spawn_file_actions_destroy.c",
750 "src/process/posix_spawn_file_actions_init.c",
751 "src/process/posix_spawnattr_destroy.c",
752 "src/process/posix_spawnattr_getflags.c",
753 "src/process/posix_spawnattr_getpgroup.c",
754 "src/process/posix_spawnattr_getsigdefault.c",
755 "src/process/posix_spawnattr_getsigmask.c",
756 "src/process/posix_spawnattr_init.c",
757 "src/process/posix_spawnattr_sched.c",
758 "src/process/posix_spawnattr_setflags.c",
759 "src/process/posix_spawnattr_setpgroup.c",
760 "src/process/posix_spawnattr_setsigdefault.c",
761 "src/process/posix_spawnattr_setsigmask.c",
762 "src/process/posix_spawnp.c",
763 "src/process/system.c",
764 "src/process/vfork.c",
765 "src/process/wait.c",
766 "src/process/waitid.c",
767 "src/process/waitpid.c",
768 "src/regex/fnmatch.c",
769 "src/regex/glob.c",
770 "src/regex/regcomp.c",
771 "src/regex/regerror.c",
772 "src/regex/regexec.c",
773 "src/regex/tre-mem.c",
774 "src/sched/affinity.c",
775 "src/sched/sched_cpucount.c",
776 "src/sched/sched_get_priority_max.c",
777 "src/sched/sched_getparam.c",
778 "src/sched/sched_getscheduler.c",
779 "src/sched/sched_rr_get_interval.c",
780 "src/sched/sched_setparam.c",
781 "src/sched/sched_setscheduler.c",
782 "src/sched/sched_yield.c",
783 "src/search/hsearch.c",
784 "src/search/insque.c",
785 "src/search/lsearch.c",
786 "src/search/tdestroy.c",
787 "src/search/tsearch_avl.c",
788 "src/select/poll.c",
789 "src/select/pselect.c",
790 "src/select/select.c",
791 "src/setjmp/longjmp.c",
792 "src/setjmp/setjmp.c",
793 "src/signal/block.c",
794 "src/signal/getitimer.c",
795 "src/signal/kill.c",
796 "src/signal/killpg.c",
797 "src/signal/psiginfo.c",
798 "src/signal/psignal.c",
799 "src/signal/raise.c",
800 "src/signal/restore.c",
801 "src/signal/setitimer.c",
802 "src/signal/sigaction.c",
803 "src/signal/sigaddset.c",
804 "src/signal/sigaltstack.c",
805 "src/signal/sigandset.c",
806 "src/signal/sigdelset.c",
807 "src/signal/sigemptyset.c",
808 "src/signal/sigfillset.c",
809 "src/signal/sighold.c",
810 "src/signal/sigignore.c",
811 "src/signal/siginterrupt.c",
812 "src/signal/sigisemptyset.c",
813 "src/signal/sigismember.c",
814 "src/signal/siglongjmp.c",
815 "src/signal/signal.c",
816 "src/signal/sigorset.c",
817 "src/signal/sigpause.c",
818 "src/signal/sigpending.c",
819 "src/signal/sigprocmask.c",
820 "src/signal/sigqueue.c",
821 "src/signal/sigrelse.c",
822 "src/signal/sigrtmax.c",
823 "src/signal/sigrtmin.c",
824 "src/signal/sigset.c",
825 "src/signal/sigsetjmp.c",
826 "src/signal/sigsetjmp_tail.c",
827 "src/signal/sigsuspend.c",
828 "src/signal/sigtimedwait.c",
829 "src/signal/sigwait.c",
830 "src/signal/sigwaitinfo.c",
831 "src/stat/__xstat.c",
832 "src/stat/chmod.c",
833 "src/stat/fchmod.c",
834 "src/stat/fchmodat.c",
835 "src/stat/fstat.c",
836 "src/stat/fstatat.c",
837 "src/stat/futimens.c",
838 "src/stat/futimesat.c",
839 "src/stat/lchmod.c",
840 "src/stat/lstat.c",
841 "src/stat/mkdir.c",
842 "src/stat/mkdirat.c",
843 "src/stat/mkfifo.c",
844 "src/stat/mkfifoat.c",
845 "src/stat/mknod.c",
846 "src/stat/mknodat.c",
847 "src/stat/stat.c",
848 "src/stat/statvfs.c",
849 "src/stat/umask.c",
850 "src/stat/utimensat.c",
851 "src/stdio/__fclose_ca.c",
852 "src/stdio/__fdopen.c",
853 "src/stdio/__fmodeflags.c",
854 "src/stdio/__fopen_rb_ca.c",
855 "src/stdio/__lockfile.c",
856 "src/stdio/__overflow.c",
857 "src/stdio/__stdio_close.c",
858 "src/stdio/__stdio_exit.c",
859 "src/stdio/__stdio_read.c",
860 "src/stdio/__stdio_seek.c",
861 "src/stdio/__stdio_write.c",
862 "src/stdio/__stdout_write.c",
863 "src/stdio/__string_read.c",
864 "src/stdio/__toread.c",
865 "src/stdio/__towrite.c",
866 "src/stdio/__uflow.c",
867 "src/stdio/asprintf.c",
868 "src/stdio/clearerr.c",
869 "src/stdio/dprintf.c",
870 "src/stdio/ext.c",
871 "src/stdio/ext2.c",
872 "src/stdio/fclose.c",
873 "src/stdio/feof.c",
874 "src/stdio/ferror.c",
875 "src/stdio/fflush.c",
876 "src/stdio/fgetc.c",
877 "src/stdio/fgetln.c",
878 "src/stdio/fgetpos.c",
879 "src/stdio/fgets.c",
880 "src/stdio/fgetwc.c",
881 "src/stdio/fgetws.c",
882 "src/stdio/fileno.c",
883 "src/stdio/flockfile.c",
884 "src/stdio/fmemopen.c",
885 "src/stdio/fopen.c",
886 "src/stdio/fprintf.c",
887 "src/stdio/fputc.c",
888 "src/stdio/fputs.c",
889 "src/stdio/fputwc.c",
890 "src/stdio/fputws.c",
891 "src/stdio/fread.c",
892 "src/stdio/freopen.c",
893 "src/stdio/fscanf.c",
894 "src/stdio/fseek.c",
895 "src/stdio/fsetpos.c",
896 "src/stdio/ftell.c",
897 "src/stdio/ftrylockfile.c",
898 "src/stdio/funlockfile.c",
899 "src/stdio/fwide.c",
900 "src/stdio/fwprintf.c",
901 "src/stdio/fwrite.c",
902 "src/stdio/fwscanf.c",
903 "src/stdio/getc.c",
904 "src/stdio/getc_unlocked.c",
905 "src/stdio/getchar.c",
906 "src/stdio/getchar_unlocked.c",
907 "src/stdio/getdelim.c",
908 "src/stdio/getline.c",
909 "src/stdio/gets.c",
910 "src/stdio/getw.c",
911 "src/stdio/getwc.c",
912 "src/stdio/getwchar.c",
913 "src/stdio/ofl.c",
914 "src/stdio/ofl_add.c",
915 "src/stdio/open_memstream.c",
916 "src/stdio/open_wmemstream.c",
917 "src/stdio/pclose.c",
918 "src/stdio/perror.c",
919 "src/stdio/popen.c",
920 "src/stdio/printf.c",
921 "src/stdio/putc.c",
922 "src/stdio/putc_unlocked.c",
923 "src/stdio/putchar.c",
924 "src/stdio/putchar_unlocked.c",
925 "src/stdio/puts.c",
926 "src/stdio/putw.c",
927 "src/stdio/putwc.c",
928 "src/stdio/putwchar.c",
929 "src/stdio/remove.c",
930 "src/stdio/rename.c",
931 "src/stdio/rewind.c",
932 "src/stdio/scanf.c",
933 "src/stdio/setbuf.c",
934 "src/stdio/setbuffer.c",
935 "src/stdio/setlinebuf.c",
936 "src/stdio/setvbuf.c",
937 "src/stdio/snprintf.c",
938 "src/stdio/sprintf.c",
939 "src/stdio/sscanf.c",
940 "src/stdio/stderr.c",
941 "src/stdio/stdin.c",
942 "src/stdio/stdout.c",
943 "src/stdio/swprintf.c",
944 "src/stdio/swscanf.c",
945 "src/stdio/tempnam.c",
946 "src/stdio/tmpfile.c",
947 "src/stdio/tmpnam.c",
948 "src/stdio/ungetc.c",
949 "src/stdio/ungetwc.c",
950 "src/stdio/vasprintf.c",
951 "src/stdio/vdprintf.c",
952 "src/stdio/vfprintf.c",
953 "src/stdio/vfscanf.c",
954 "src/stdio/vfwprintf.c",
955 "src/stdio/vfwscanf.c",
956 "src/stdio/vprintf.c",
957 "src/stdio/vscanf.c",
958 "src/stdio/vsnprintf.c",
959 "src/stdio/vsprintf.c",
960 "src/stdio/vsscanf.c",
961 "src/stdio/vswprintf.c",
962 "src/stdio/vswscanf.c",
963 "src/stdio/vwprintf.c",
964 "src/stdio/vwscanf.c",
965 "src/stdio/wprintf.c",
966 "src/stdio/wscanf.c",
967 "src/stdlib/abs.c",
968 "src/stdlib/atof.c",
969 "src/stdlib/atoi.c",
970 "src/stdlib/atol.c",
971 "src/stdlib/atoll.c",
972 "src/stdlib/bsearch.c",
973 "src/stdlib/div.c",
974 "src/stdlib/ecvt.c",
975 "src/stdlib/fcvt.c",
976 "src/stdlib/gcvt.c",
977 "src/stdlib/imaxabs.c",
978 "src/stdlib/imaxdiv.c",
979 "src/stdlib/labs.c",
980 "src/stdlib/ldiv.c",
981 "src/stdlib/llabs.c",
982 "src/stdlib/lldiv.c",
983 "src/stdlib/qsort.c",
984 "src/stdlib/strtod.c",
985 "src/stdlib/strtol.c",
986 "src/stdlib/wcstod.c",
987 "src/stdlib/wcstol.c",
988 "src/string/bcmp.c",
989 "src/string/bcopy.c",
990 "src/string/bzero.c",
991 "src/string/index.c",
992 "src/string/memccpy.c",
993 "src/string/memchr.c",
994 "src/string/memcmp.c",
995 "src/string/memcpy.c",
996 "src/string/memmem.c",
997 "src/string/memmove.c",
998 "src/string/mempcpy.c",
999 "src/string/memrchr.c",
1000 "src/string/memset.c",
1001 "src/string/rindex.c",
1002 "src/string/stpcpy.c",
1003 "src/string/stpncpy.c",
1004 "src/string/strcasecmp.c",
1005 "src/string/strcasestr.c",
1006 "src/string/strcat.c",
1007 "src/string/strchr.c",
1008 "src/string/strchrnul.c",
1009 "src/string/strcmp.c",
1010 "src/string/strcpy.c",
1011 "src/string/strcspn.c",
1012 "src/string/strdup.c",
1013 "src/string/strerror_r.c",
1014 "src/string/strlcat.c",
1015 "src/string/strlcpy.c",
1016 "src/string/strlen.c",
1017 "src/string/strncasecmp.c",
1018 "src/string/strncat.c",
1019 "src/string/strncmp.c",
1020 "src/string/strncpy.c",
1021 "src/string/strndup.c",
1022 "src/string/strnlen.c",
1023 "src/string/strpbrk.c",
1024 "src/string/strrchr.c",
1025 "src/string/strsep.c",
1026 "src/string/strsignal.c",
1027 "src/string/strspn.c",
1028 "src/string/strstr.c",
1029 "src/string/strtok.c",
1030 "src/string/strtok_r.c",
1031 "src/string/strverscmp.c",
1032 "src/string/swab.c",
1033 "src/string/wcpcpy.c",
1034 "src/string/wcpncpy.c",
1035 "src/string/wcscasecmp.c",
1036 "src/string/wcscasecmp_l.c",
1037 "src/string/wcscat.c",
1038 "src/string/wcschr.c",
1039 "src/string/wcscmp.c",
1040 "src/string/wcscpy.c",
1041 "src/string/wcscspn.c",
1042 "src/string/wcsdup.c",
1043 "src/string/wcslen.c",
1044 "src/string/wcsncasecmp.c",
1045 "src/string/wcsncasecmp_l.c",
1046 "src/string/wcsncat.c",
1047 "src/string/wcsncmp.c",
1048 "src/string/wcsncpy.c",
1049 "src/string/wcsnlen.c",
1050 "src/string/wcspbrk.c",
1051 "src/string/wcsrchr.c",
1052 "src/string/wcsspn.c",
1053 "src/string/wcsstr.c",
1054 "src/string/wcstok.c",
1055 "src/string/wcswcs.c",
1056 "src/string/wmemchr.c",
1057 "src/string/wmemcmp.c",
1058 "src/string/wmemcpy.c",
1059 "src/string/wmemmove.c",
1060 "src/string/wmemset.c",
1061 "src/temp/__randname.c",
1062 "src/temp/mkdtemp.c",
1063 "src/temp/mkostemp.c",
1064 "src/temp/mkostemps.c",
1065 "src/temp/mkstemp.c",
1066 "src/temp/mkstemps.c",
1067 "src/temp/mktemp.c",
1068 "src/termios/cfgetospeed.c",
1069 "src/termios/cfmakeraw.c",
1070 "src/termios/cfsetospeed.c",
1071 "src/termios/tcdrain.c",
1072 "src/termios/tcflow.c",
1073 "src/termios/tcflush.c",
1074 "src/termios/tcgetattr.c",
1075 "src/termios/tcgetsid.c",
1076 "src/termios/tcsendbreak.c",
1077 "src/termios/tcsetattr.c",
1078 "src/thread/__futex.c",
1079 "src/thread/__lock.c",
1080 "src/thread/__set_thread_area.c",
1081 "src/thread/__syscall_cp.c",
1082 "src/thread/__timedwait.c",
1083 "src/thread/__tls_get_addr.c",
1084 "src/thread/__unmapself.c",
1085 "src/thread/__wait.c",
1086 "src/thread/call_once.c",
1087 "src/thread/clone.c",
1088 "src/thread/cnd_broadcast.c",
1089 "src/thread/cnd_destroy.c",
1090 "src/thread/cnd_init.c",
1091 "src/thread/cnd_signal.c",
1092 "src/thread/cnd_timedwait.c",
1093 "src/thread/cnd_wait.c",
1094 "src/thread/lock_ptc.c",
1095 "src/thread/mtx_destroy.c",
1096 "src/thread/mtx_init.c",
1097 "src/thread/mtx_lock.c",
1098 "src/thread/mtx_timedlock.c",
1099 "src/thread/mtx_trylock.c",
1100 "src/thread/mtx_unlock.c",
1101 "src/thread/pthread_atfork.c",
1102 "src/thread/pthread_attr_destroy.c",
1103 "src/thread/pthread_attr_get.c",
1104 "src/thread/pthread_attr_init.c",
1105 "src/thread/pthread_attr_setdetachstate.c",
1106 "src/thread/pthread_attr_setguardsize.c",
1107 "src/thread/pthread_attr_setinheritsched.c",
1108 "src/thread/pthread_attr_setschedparam.c",
1109 "src/thread/pthread_attr_setschedpolicy.c",
1110 "src/thread/pthread_attr_setscope.c",
1111 "src/thread/pthread_attr_setstack.c",
1112 "src/thread/pthread_attr_setstacksize.c",
1113 "src/thread/pthread_barrier_destroy.c",
1114 "src/thread/pthread_barrier_init.c",
1115 "src/thread/pthread_barrier_wait.c",
1116 "src/thread/pthread_barrierattr_destroy.c",
1117 "src/thread/pthread_barrierattr_init.c",
1118 "src/thread/pthread_barrierattr_setpshared.c",
1119 "src/thread/pthread_cancel.c",
1120 "src/thread/pthread_cleanup_push.c",
1121 "src/thread/pthread_cond_broadcast.c",
1122 "src/thread/pthread_cond_destroy.c",
1123 "src/thread/pthread_cond_init.c",
1124 "src/thread/pthread_cond_signal.c",
1125 "src/thread/pthread_cond_timedwait.c",
1126 "src/thread/pthread_cond_wait.c",
1127 "src/thread/pthread_condattr_destroy.c",
1128 "src/thread/pthread_condattr_init.c",
1129 "src/thread/pthread_condattr_setclock.c",
1130 "src/thread/pthread_condattr_setpshared.c",
1131 "src/thread/pthread_create.c",
1132 "src/thread/pthread_detach.c",
1133 "src/thread/pthread_equal.c",
1134 "src/thread/pthread_getattr_np.c",
1135 "src/thread/pthread_getconcurrency.c",
1136 "src/thread/pthread_getcpuclockid.c",
1137 "src/thread/pthread_getschedparam.c",
1138 "src/thread/pthread_getspecific.c",
1139 "src/thread/pthread_join.c",
1140 "src/thread/pthread_key_create.c",
1141 "src/thread/pthread_kill.c",
1142 "src/thread/pthread_mutex_consistent.c",
1143 "src/thread/pthread_mutex_destroy.c",
1144 "src/thread/pthread_mutex_getprioceiling.c",
1145 "src/thread/pthread_mutex_init.c",
1146 "src/thread/pthread_mutex_lock.c",
1147 "src/thread/pthread_mutex_setprioceiling.c",
1148 "src/thread/pthread_mutex_timedlock.c",
1149 "src/thread/pthread_mutex_trylock.c",
1150 "src/thread/pthread_mutex_unlock.c",
1151 "src/thread/pthread_mutexattr_destroy.c",
1152 "src/thread/pthread_mutexattr_init.c",
1153 "src/thread/pthread_mutexattr_setprotocol.c",
1154 "src/thread/pthread_mutexattr_setpshared.c",
1155 "src/thread/pthread_mutexattr_setrobust.c",
1156 "src/thread/pthread_mutexattr_settype.c",
1157 "src/thread/pthread_once.c",
1158 "src/thread/pthread_rwlock_destroy.c",
1159 "src/thread/pthread_rwlock_init.c",
1160 "src/thread/pthread_rwlock_rdlock.c",
1161 "src/thread/pthread_rwlock_timedrdlock.c",
1162 "src/thread/pthread_rwlock_timedwrlock.c",
1163 "src/thread/pthread_rwlock_tryrdlock.c",
1164 "src/thread/pthread_rwlock_trywrlock.c",
1165 "src/thread/pthread_rwlock_unlock.c",
1166 "src/thread/pthread_rwlock_wrlock.c",
1167 "src/thread/pthread_rwlockattr_destroy.c",
1168 "src/thread/pthread_rwlockattr_init.c",
1169 "src/thread/pthread_rwlockattr_setpshared.c",
1170 "src/thread/pthread_self.c",
1171 "src/thread/pthread_setcancelstate.c",
1172 "src/thread/pthread_setcanceltype.c",
1173 "src/thread/pthread_setconcurrency.c",
1174 "src/thread/pthread_setschedparam.c",
1175 "src/thread/pthread_setschedprio.c",
1176 "src/thread/pthread_setspecific.c",
1177 "src/thread/pthread_sigmask.c",
1178 "src/thread/pthread_spin_destroy.c",
1179 "src/thread/pthread_spin_init.c",
1180 "src/thread/pthread_spin_lock.c",
1181 "src/thread/pthread_spin_trylock.c",
1182 "src/thread/pthread_spin_unlock.c",
1183 "src/thread/pthread_testcancel.c",
1184 "src/thread/sem_destroy.c",
1185 "src/thread/sem_getvalue.c",
1186 "src/thread/sem_init.c",
1187 "src/thread/sem_open.c",
1188 "src/thread/sem_post.c",
1189 "src/thread/sem_timedwait.c",
1190 "src/thread/sem_trywait.c",
1191 "src/thread/sem_unlink.c",
1192 "src/thread/sem_wait.c",
1193 "src/thread/synccall.c",
1194 "src/thread/syscall_cp.c",
1195 "src/thread/thrd_create.c",
1196 "src/thread/thrd_exit.c",
1197 "src/thread/thrd_join.c",
1198 "src/thread/thrd_sleep.c",
1199 "src/thread/thrd_yield.c",
1200 "src/thread/tls.c",
1201 "src/thread/tss_create.c",
1202 "src/thread/tss_delete.c",
1203 "src/thread/tss_set.c",
1204 "src/thread/vmlock.c",
1205 "src/time/__asctime.c",
1206 "src/time/__map_file.c",
1207 "src/time/__month_to_secs.c",
1208 "src/time/__secs_to_tm.c",
1209 "src/time/__tm_to_secs.c",
1210 "src/time/__tz.c",
1211 "src/time/__year_to_secs.c",
1212 "src/time/asctime.c",
1213 "src/time/asctime_r.c",
1214 "src/time/clock.c",
1215 "src/time/clock_getcpuclockid.c",
1216 "src/time/clock_getres.c",
1217 "src/time/clock_gettime.c",
1218 "src/time/clock_nanosleep.c",
1219 "src/time/clock_settime.c",
1220 "src/time/ctime.c",
1221 "src/time/ctime_r.c",
1222 "src/time/difftime.c",
1223 "src/time/ftime.c",
1224 "src/time/getdate.c",
1225 "src/time/gettimeofday.c",
1226 "src/time/gmtime.c",
1227 "src/time/gmtime_r.c",
1228 "src/time/localtime.c",
1229 "src/time/localtime_r.c",
1230 "src/time/mktime.c",
1231 "src/time/nanosleep.c",
1232 "src/time/strftime.c",
1233 "src/time/strptime.c",
1234 "src/time/time.c",
1235 "src/time/timegm.c",
1236 "src/time/timer_create.c",
1237 "src/time/timer_delete.c",
1238 "src/time/timer_getoverrun.c",
1239 "src/time/timer_gettime.c",
1240 "src/time/timer_settime.c",
1241 "src/time/times.c",
1242 "src/time/timespec_get.c",
1243 "src/time/utime.c",
1244 "src/time/wcsftime.c",
1245 "src/unistd/_exit.c",
1246 "src/unistd/access.c",
1247 "src/unistd/acct.c",
1248 "src/unistd/alarm.c",
1249 "src/unistd/chdir.c",
1250 "src/unistd/chown.c",
1251 "src/unistd/close.c",
1252 "src/unistd/ctermid.c",
1253 "src/unistd/dup.c",
1254 "src/unistd/dup2.c",
1255 "src/unistd/dup3.c",
1256 "src/unistd/faccessat.c",
1257 "src/unistd/fchdir.c",
1258 "src/unistd/fchown.c",
1259 "src/unistd/fchownat.c",
1260 "src/unistd/fdatasync.c",
1261 "src/unistd/fsync.c",
1262 "src/unistd/ftruncate.c",
1263 "src/unistd/getcwd.c",
1264 "src/unistd/getegid.c",
1265 "src/unistd/geteuid.c",
1266 "src/unistd/getgid.c",
1267 "src/unistd/getgroups.c",
1268 "src/unistd/gethostname.c",
1269 "src/unistd/getlogin.c",
1270 "src/unistd/getlogin_r.c",
1271 "src/unistd/getpgid.c",
1272 "src/unistd/getpgrp.c",
1273 "src/unistd/getpid.c",
1274 "src/unistd/getppid.c",
1275 "src/unistd/getsid.c",
1276 "src/unistd/getuid.c",
1277 "src/unistd/isatty.c",
1278 "src/unistd/lchown.c",
1279 "src/unistd/link.c",
1280 "src/unistd/linkat.c",
1281 "src/unistd/lseek.c",
1282 "src/unistd/nice.c",
1283 "src/unistd/pause.c",
1284 "src/unistd/pipe.c",
1285 "src/unistd/pipe2.c",
1286 "src/unistd/posix_close.c",
1287 "src/unistd/pread.c",
1288 "src/unistd/preadv.c",
1289 "src/unistd/pwrite.c",
1290 "src/unistd/pwritev.c",
1291 "src/unistd/read.c",
1292 "src/unistd/readlink.c",
1293 "src/unistd/readlinkat.c",
1294 "src/unistd/readv.c",
1295 "src/unistd/renameat.c",
1296 "src/unistd/rmdir.c",
1297 "src/unistd/setegid.c",
1298 "src/unistd/seteuid.c",
1299 "src/unistd/setgid.c",
1300 "src/unistd/setpgid.c",
1301 "src/unistd/setpgrp.c",
1302 "src/unistd/setregid.c",
1303 "src/unistd/setresgid.c",
1304 "src/unistd/setresuid.c",
1305 "src/unistd/setreuid.c",
1306 "src/unistd/setsid.c",
1307 "src/unistd/setuid.c",
1308 "src/unistd/setxid.c",
1309 "src/unistd/sleep.c",
1310 "src/unistd/symlink.c",
1311 "src/unistd/symlinkat.c",
1312 "src/unistd/sync.c",
1313 "src/unistd/tcgetpgrp.c",
1314 "src/unistd/tcsetpgrp.c",
1315 "src/unistd/truncate.c",
1316 "src/unistd/ttyname.c",
1317 "src/unistd/ttyname_r.c",
1318 "src/unistd/ualarm.c",
1319 "src/unistd/unlink.c",
1320 "src/unistd/unlinkat.c",
1321 "src/unistd/usleep.c",
1322 "src/unistd/write.c",
1323 "src/unistd/writev.c",
1324 ]
1325
1326 sources += [
1327 "./src/fenv/x86_64/fenv.s",
viettrungluu 2016/01/11 23:49:09 Is there a reason for the "./"? And for doing |sou
kulakowski 2016/01/11 23:59:16 Fixed the ./, and mentioned that they are arch spe
1328 "./src/internal/x86_64/syscall.s",
1329 "./src/ldso/x86_64/dlsym.s",
1330 "./src/ldso/x86_64/tlsdesc.s",
1331 "./src/math/x86_64/__invtrigl.s",
1332 "./src/math/x86_64/acosl.s",
1333 "./src/math/x86_64/asinl.s",
1334 "./src/math/x86_64/atan2l.s",
1335 "./src/math/x86_64/atanl.s",
1336 "./src/math/x86_64/ceill.s",
1337 "./src/math/x86_64/exp2l.s",
1338 "./src/math/x86_64/expl.s",
1339 "./src/math/x86_64/expm1l.s",
1340 "./src/math/x86_64/fabs.s",
1341 "./src/math/x86_64/fabsf.s",
1342 "./src/math/x86_64/fabsl.s",
1343 "./src/math/x86_64/floorl.s",
1344 "./src/math/x86_64/fmodl.s",
1345 "./src/math/x86_64/llrint.s",
1346 "./src/math/x86_64/llrintf.s",
1347 "./src/math/x86_64/llrintl.s",
1348 "./src/math/x86_64/log10l.s",
1349 "./src/math/x86_64/log1pl.s",
1350 "./src/math/x86_64/log2l.s",
1351 "./src/math/x86_64/logl.s",
1352 "./src/math/x86_64/lrint.s",
1353 "./src/math/x86_64/lrintf.s",
1354 "./src/math/x86_64/lrintl.s",
1355 "./src/math/x86_64/remainderl.s",
1356 "./src/math/x86_64/rintl.s",
1357 "./src/math/x86_64/sqrt.s",
1358 "./src/math/x86_64/sqrtf.s",
1359 "./src/math/x86_64/sqrtl.s",
1360 "./src/math/x86_64/truncl.s",
1361 "./src/process/x86_64/vfork.s",
1362 "./src/setjmp/x86_64/longjmp.s",
1363 "./src/setjmp/x86_64/setjmp.s",
1364 "./src/signal/x86_64/restore.s",
1365 "./src/signal/x86_64/sigsetjmp.s",
1366 "./src/string/x86_64/memcpy.s",
1367 "./src/string/x86_64/memmove.s",
1368 "./src/string/x86_64/memset.s",
1369 "./src/thread/x86_64/__set_thread_area.s",
1370 "./src/thread/x86_64/__unmapself.s",
1371 "./src/thread/x86_64/clone.s",
1372 "./src/thread/x86_64/syscall_cp.s",
1373 ]
1374 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | fusl/include/bits » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698