• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
2# Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without modification,
5# are permitted provided that the following conditions are met:
6#
7# 1. Redistributions of source code must retain the above copyright notice, this list of
8#    conditions and the following disclaimer.
9#
10# 2. Redistributions in binary form must reproduce the above copyright notice, this list
11#    of conditions and the following disclaimer in the documentation and/or other materials
12#    provided with the distribution.
13#
14# 3. Neither the name of the copyright holder nor the names of its contributors may be used
15#    to endorse or promote products derived from this software without specific prior written
16#    permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
22# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30MUSLPORTINGDIR = get_path_info(".", "abspath")
31
32MUSL_SRC_COMMON = [
33  "$MUSLPORTINGDIR/src/ctype/__ctype_get_mb_cur_max.c",
34  "$MUSLPORTINGDIR/src/ctype/isalpha.c",
35  "$MUSLPORTINGDIR/src/ctype/isdigit.c",
36  "$MUSLPORTINGDIR/src/ctype/islower.c",
37  "$MUSLPORTINGDIR/src/ctype/isspace.c",
38  "$MUSLPORTINGDIR/src/ctype/isupper.c",
39  "$MUSLPORTINGDIR/src/ctype/isxdigit.c",
40  "$MUSLPORTINGDIR/src/ctype/tolower.c",
41  "$MUSLPORTINGDIR/src/ctype/toupper.c",
42  "$MUSLPORTINGDIR/src/errno/strerror.c",
43  "$MUSLPORTINGDIR/src/exit/assert.c",
44  "$MUSLPORTINGDIR/src/fenv/fenv.c",
45  "$MUSLPORTINGDIR/src/internal/floatscan.c",
46  "$MUSLPORTINGDIR/src/internal/intscan.c",
47  "$MUSLPORTINGDIR/src/internal/shgetc.c",
48  "$MUSLPORTINGDIR/src/linux/stime.c",
49  "$MUSLPORTINGDIR/src/locale/__lctrans.c",
50  "$MUSLPORTINGDIR/src/locale/__mo_lookup.c",
51  "$MUSLPORTINGDIR/src/locale/c_locale.c",
52  "$MUSLPORTINGDIR/src/locale/langinfo.c",
53  "$MUSLPORTINGDIR/src/locale/locale_map.c",
54  "$MUSLPORTINGDIR/src/math/__cos.c",
55  "$MUSLPORTINGDIR/src/math/__cosdf.c",
56  "$MUSLPORTINGDIR/src/math/__cosl.c",
57  "$MUSLPORTINGDIR/src/math/__expo2.c",
58  "$MUSLPORTINGDIR/src/math/__expo2f.c",
59  "$MUSLPORTINGDIR/src/math/__fpclassify.c",
60  "$MUSLPORTINGDIR/src/math/__fpclassifyf.c",
61  "$MUSLPORTINGDIR/src/math/__fpclassifyl.c",
62  "$MUSLPORTINGDIR/src/math/__invtrigl.c",
63  "$MUSLPORTINGDIR/src/math/__math_divzero.c",
64  "$MUSLPORTINGDIR/src/math/__math_divzerof.c",
65  "$MUSLPORTINGDIR/src/math/__math_invalid.c",
66  "$MUSLPORTINGDIR/src/math/__math_invalidf.c",
67  "$MUSLPORTINGDIR/src/math/__math_oflow.c",
68  "$MUSLPORTINGDIR/src/math/__math_oflowf.c",
69  "$MUSLPORTINGDIR/src/math/__math_uflow.c",
70  "$MUSLPORTINGDIR/src/math/__math_uflowf.c",
71  "$MUSLPORTINGDIR/src/math/__math_xflow.c",
72  "$MUSLPORTINGDIR/src/math/__math_xflowf.c",
73  "$MUSLPORTINGDIR/src/math/__polevll.c",
74  "$MUSLPORTINGDIR/src/math/__rem_pio2.c",
75  "$MUSLPORTINGDIR/src/math/__rem_pio2_large.c",
76  "$MUSLPORTINGDIR/src/math/__rem_pio2f.c",
77  "$MUSLPORTINGDIR/src/math/__rem_pio2l.c",
78  "$MUSLPORTINGDIR/src/math/__signbit.c",
79  "$MUSLPORTINGDIR/src/math/__signbitf.c",
80  "$MUSLPORTINGDIR/src/math/__signbitl.c",
81  "$MUSLPORTINGDIR/src/math/__sin.c",
82  "$MUSLPORTINGDIR/src/math/__sindf.c",
83  "$MUSLPORTINGDIR/src/math/__sinl.c",
84  "$MUSLPORTINGDIR/src/math/__tan.c",
85  "$MUSLPORTINGDIR/src/math/__tandf.c",
86  "$MUSLPORTINGDIR/src/math/__tanl.c",
87  "$MUSLPORTINGDIR/src/math/acos.c",
88  "$MUSLPORTINGDIR/src/math/acosf.c",
89  "$MUSLPORTINGDIR/src/math/acosh.c",
90  "$MUSLPORTINGDIR/src/math/acoshf.c",
91  "$MUSLPORTINGDIR/src/math/acoshl.c",
92  "$MUSLPORTINGDIR/src/math/acosl.c",
93  "$MUSLPORTINGDIR/src/math/asin.c",
94  "$MUSLPORTINGDIR/src/math/asinf.c",
95  "$MUSLPORTINGDIR/src/math/asinh.c",
96  "$MUSLPORTINGDIR/src/math/asinhf.c",
97  "$MUSLPORTINGDIR/src/math/asinhl.c",
98  "$MUSLPORTINGDIR/src/math/asinl.c",
99  "$MUSLPORTINGDIR/src/math/atan.c",
100  "$MUSLPORTINGDIR/src/math/atan2.c",
101  "$MUSLPORTINGDIR/src/math/atan2f.c",
102  "$MUSLPORTINGDIR/src/math/atan2l.c",
103  "$MUSLPORTINGDIR/src/math/atanf.c",
104  "$MUSLPORTINGDIR/src/math/atanh.c",
105  "$MUSLPORTINGDIR/src/math/atanhf.c",
106  "$MUSLPORTINGDIR/src/math/atanhl.c",
107  "$MUSLPORTINGDIR/src/math/atanl.c",
108  "$MUSLPORTINGDIR/src/math/cbrt.c",
109  "$MUSLPORTINGDIR/src/math/cbrtf.c",
110  "$MUSLPORTINGDIR/src/math/cbrtl.c",
111  "$MUSLPORTINGDIR/src/math/ceil.c",
112  "$MUSLPORTINGDIR/src/math/ceilf.c",
113  "$MUSLPORTINGDIR/src/math/ceill.c",
114  "$MUSLPORTINGDIR/src/math/copysign.c",
115  "$MUSLPORTINGDIR/src/math/copysignf.c",
116  "$MUSLPORTINGDIR/src/math/copysignl.c",
117  "$MUSLPORTINGDIR/src/math/cos.c",
118  "$MUSLPORTINGDIR/src/math/cosf.c",
119  "$MUSLPORTINGDIR/src/math/cosh.c",
120  "$MUSLPORTINGDIR/src/math/coshf.c",
121  "$MUSLPORTINGDIR/src/math/coshl.c",
122  "$MUSLPORTINGDIR/src/math/cosl.c",
123  "$MUSLPORTINGDIR/src/math/erf.c",
124  "$MUSLPORTINGDIR/src/math/erff.c",
125  "$MUSLPORTINGDIR/src/math/erfl.c",
126  "$MUSLPORTINGDIR/src/math/exp.c",
127  "$MUSLPORTINGDIR/src/math/exp10.c",
128  "$MUSLPORTINGDIR/src/math/exp10f.c",
129  "$MUSLPORTINGDIR/src/math/exp10l.c",
130  "$MUSLPORTINGDIR/src/math/exp2.c",
131  "$MUSLPORTINGDIR/src/math/exp2f.c",
132  "$MUSLPORTINGDIR/src/math/exp2f_data.c",
133  "$MUSLPORTINGDIR/src/math/exp2l.c",
134  "$MUSLPORTINGDIR/src/math/exp_data.c",
135  "$MUSLPORTINGDIR/src/math/expf.c",
136  "$MUSLPORTINGDIR/src/math/expl.c",
137  "$MUSLPORTINGDIR/src/math/expm1.c",
138  "$MUSLPORTINGDIR/src/math/expm1f.c",
139  "$MUSLPORTINGDIR/src/math/expm1l.c",
140  "$MUSLPORTINGDIR/src/math/fabs.c",
141  "$MUSLPORTINGDIR/src/math/fabsf.c",
142  "$MUSLPORTINGDIR/src/math/fabsl.c",
143  "$MUSLPORTINGDIR/src/math/fdim.c",
144  "$MUSLPORTINGDIR/src/math/fdimf.c",
145  "$MUSLPORTINGDIR/src/math/fdiml.c",
146  "$MUSLPORTINGDIR/src/math/finite.c",
147  "$MUSLPORTINGDIR/src/math/finitef.c",
148  "$MUSLPORTINGDIR/src/math/floor.c",
149  "$MUSLPORTINGDIR/src/math/floorf.c",
150  "$MUSLPORTINGDIR/src/math/floorl.c",
151  "$MUSLPORTINGDIR/src/math/fma.c",
152  "$MUSLPORTINGDIR/src/math/fmaf.c",
153  "$MUSLPORTINGDIR/src/math/fmal.c",
154  "$MUSLPORTINGDIR/src/math/fmax.c",
155  "$MUSLPORTINGDIR/src/math/fmaxf.c",
156  "$MUSLPORTINGDIR/src/math/fmaxl.c",
157  "$MUSLPORTINGDIR/src/math/fmin.c",
158  "$MUSLPORTINGDIR/src/math/fminf.c",
159  "$MUSLPORTINGDIR/src/math/fminl.c",
160  "$MUSLPORTINGDIR/src/math/fmod.c",
161  "$MUSLPORTINGDIR/src/math/fmodf.c",
162  "$MUSLPORTINGDIR/src/math/fmodl.c",
163  "$MUSLPORTINGDIR/src/math/frexp.c",
164  "$MUSLPORTINGDIR/src/math/frexpf.c",
165  "$MUSLPORTINGDIR/src/math/frexpl.c",
166  "$MUSLPORTINGDIR/src/math/hypot.c",
167  "$MUSLPORTINGDIR/src/math/hypotf.c",
168  "$MUSLPORTINGDIR/src/math/hypotl.c",
169  "$MUSLPORTINGDIR/src/math/ilogb.c",
170  "$MUSLPORTINGDIR/src/math/ilogbf.c",
171  "$MUSLPORTINGDIR/src/math/ilogbl.c",
172  "$MUSLPORTINGDIR/src/math/j0.c",
173  "$MUSLPORTINGDIR/src/math/j0f.c",
174  "$MUSLPORTINGDIR/src/math/j1.c",
175  "$MUSLPORTINGDIR/src/math/j1f.c",
176  "$MUSLPORTINGDIR/src/math/jn.c",
177  "$MUSLPORTINGDIR/src/math/jnf.c",
178  "$MUSLPORTINGDIR/src/math/ldexp.c",
179  "$MUSLPORTINGDIR/src/math/ldexpf.c",
180  "$MUSLPORTINGDIR/src/math/ldexpl.c",
181  "$MUSLPORTINGDIR/src/math/lgamma.c",
182  "$MUSLPORTINGDIR/src/math/lgamma_r.c",
183  "$MUSLPORTINGDIR/src/math/lgammaf.c",
184  "$MUSLPORTINGDIR/src/math/lgammaf_r.c",
185  "$MUSLPORTINGDIR/src/math/lgammal.c",
186  "$MUSLPORTINGDIR/src/math/llrint.c",
187  "$MUSLPORTINGDIR/src/math/llrintf.c",
188  "$MUSLPORTINGDIR/src/math/llrintl.c",
189  "$MUSLPORTINGDIR/src/math/llround.c",
190  "$MUSLPORTINGDIR/src/math/llroundf.c",
191  "$MUSLPORTINGDIR/src/math/llroundl.c",
192  "$MUSLPORTINGDIR/src/math/log.c",
193  "$MUSLPORTINGDIR/src/math/log10.c",
194  "$MUSLPORTINGDIR/src/math/log10f.c",
195  "$MUSLPORTINGDIR/src/math/log10l.c",
196  "$MUSLPORTINGDIR/src/math/log1p.c",
197  "$MUSLPORTINGDIR/src/math/log1pf.c",
198  "$MUSLPORTINGDIR/src/math/log1pl.c",
199  "$MUSLPORTINGDIR/src/math/log2.c",
200  "$MUSLPORTINGDIR/src/math/log2_data.c",
201  "$MUSLPORTINGDIR/src/math/log2f.c",
202  "$MUSLPORTINGDIR/src/math/log2f_data.c",
203  "$MUSLPORTINGDIR/src/math/log2l.c",
204  "$MUSLPORTINGDIR/src/math/log_data.c",
205  "$MUSLPORTINGDIR/src/math/logb.c",
206  "$MUSLPORTINGDIR/src/math/logbf.c",
207  "$MUSLPORTINGDIR/src/math/logbl.c",
208  "$MUSLPORTINGDIR/src/math/logf.c",
209  "$MUSLPORTINGDIR/src/math/logf_data.c",
210  "$MUSLPORTINGDIR/src/math/logl.c",
211  "$MUSLPORTINGDIR/src/math/lrint.c",
212  "$MUSLPORTINGDIR/src/math/lrintf.c",
213  "$MUSLPORTINGDIR/src/math/lrintl.c",
214  "$MUSLPORTINGDIR/src/math/lround.c",
215  "$MUSLPORTINGDIR/src/math/lroundf.c",
216  "$MUSLPORTINGDIR/src/math/lroundl.c",
217  "$MUSLPORTINGDIR/src/math/modf.c",
218  "$MUSLPORTINGDIR/src/math/modff.c",
219  "$MUSLPORTINGDIR/src/math/modfl.c",
220  "$MUSLPORTINGDIR/src/math/nan.c",
221  "$MUSLPORTINGDIR/src/math/nanf.c",
222  "$MUSLPORTINGDIR/src/math/nanl.c",
223  "$MUSLPORTINGDIR/src/math/nearbyint.c",
224  "$MUSLPORTINGDIR/src/math/nearbyintf.c",
225  "$MUSLPORTINGDIR/src/math/nearbyintl.c",
226  "$MUSLPORTINGDIR/src/math/nextafter.c",
227  "$MUSLPORTINGDIR/src/math/nextafterf.c",
228  "$MUSLPORTINGDIR/src/math/nextafterl.c",
229  "$MUSLPORTINGDIR/src/math/nexttoward.c",
230  "$MUSLPORTINGDIR/src/math/nexttowardf.c",
231  "$MUSLPORTINGDIR/src/math/nexttowardl.c",
232  "$MUSLPORTINGDIR/src/math/pow.c",
233  "$MUSLPORTINGDIR/src/math/pow_data.c",
234  "$MUSLPORTINGDIR/src/math/powf.c",
235  "$MUSLPORTINGDIR/src/math/powf_data.c",
236  "$MUSLPORTINGDIR/src/math/powl.c",
237  "$MUSLPORTINGDIR/src/math/remainder.c",
238  "$MUSLPORTINGDIR/src/math/remainderf.c",
239  "$MUSLPORTINGDIR/src/math/remainderl.c",
240  "$MUSLPORTINGDIR/src/math/remquo.c",
241  "$MUSLPORTINGDIR/src/math/remquof.c",
242  "$MUSLPORTINGDIR/src/math/remquol.c",
243  "$MUSLPORTINGDIR/src/math/rint.c",
244  "$MUSLPORTINGDIR/src/math/rintf.c",
245  "$MUSLPORTINGDIR/src/math/rintl.c",
246  "$MUSLPORTINGDIR/src/math/round.c",
247  "$MUSLPORTINGDIR/src/math/roundf.c",
248  "$MUSLPORTINGDIR/src/math/roundl.c",
249  "$MUSLPORTINGDIR/src/math/scalb.c",
250  "$MUSLPORTINGDIR/src/math/scalbf.c",
251  "$MUSLPORTINGDIR/src/math/scalbln.c",
252  "$MUSLPORTINGDIR/src/math/scalblnf.c",
253  "$MUSLPORTINGDIR/src/math/scalblnl.c",
254  "$MUSLPORTINGDIR/src/math/scalbn.c",
255  "$MUSLPORTINGDIR/src/math/scalbnf.c",
256  "$MUSLPORTINGDIR/src/math/scalbnl.c",
257  "$MUSLPORTINGDIR/src/math/signgam.c",
258  "$MUSLPORTINGDIR/src/math/significand.c",
259  "$MUSLPORTINGDIR/src/math/significandf.c",
260  "$MUSLPORTINGDIR/src/math/sin.c",
261  "$MUSLPORTINGDIR/src/math/sincos.c",
262  "$MUSLPORTINGDIR/src/math/sincosf.c",
263  "$MUSLPORTINGDIR/src/math/sincosl.c",
264  "$MUSLPORTINGDIR/src/math/sinf.c",
265  "$MUSLPORTINGDIR/src/math/sinh.c",
266  "$MUSLPORTINGDIR/src/math/sinhf.c",
267  "$MUSLPORTINGDIR/src/math/sinhl.c",
268  "$MUSLPORTINGDIR/src/math/sinl.c",
269  "$MUSLPORTINGDIR/src/math/sqrt.c",
270  "$MUSLPORTINGDIR/src/math/sqrtf.c",
271  "$MUSLPORTINGDIR/src/math/sqrtl.c",
272  "$MUSLPORTINGDIR/src/math/tan.c",
273  "$MUSLPORTINGDIR/src/math/tanf.c",
274  "$MUSLPORTINGDIR/src/math/tanh.c",
275  "$MUSLPORTINGDIR/src/math/tanhf.c",
276  "$MUSLPORTINGDIR/src/math/tanhl.c",
277  "$MUSLPORTINGDIR/src/math/tanl.c",
278  "$MUSLPORTINGDIR/src/math/tgamma.c",
279  "$MUSLPORTINGDIR/src/math/tgammaf.c",
280  "$MUSLPORTINGDIR/src/math/tgammal.c",
281  "$MUSLPORTINGDIR/src/math/trunc.c",
282  "$MUSLPORTINGDIR/src/math/truncf.c",
283  "$MUSLPORTINGDIR/src/math/truncl.c",
284  "$MUSLPORTINGDIR/src/multibyte/internal.c",
285  "$MUSLPORTINGDIR/src/multibyte/mbtowc.c",
286  "$MUSLPORTINGDIR/src/multibyte/wcrtomb.c",
287  "$MUSLPORTINGDIR/src/multibyte/wctomb.c",
288  "$MUSLPORTINGDIR/src/network/htonl.c",
289  "$MUSLPORTINGDIR/src/network/htons.c",
290  "$MUSLPORTINGDIR/src/network/ntohl.c",
291  "$MUSLPORTINGDIR/src/network/ntohs.c",
292  "$MUSLPORTINGDIR/src/prng/random.c",
293  "$MUSLPORTINGDIR/src/stdio/__fdopen.c",
294  "$MUSLPORTINGDIR/src/stdio/__fmodeflags.c",
295  "$MUSLPORTINGDIR/src/stdio/__lockfile.c",
296  "$MUSLPORTINGDIR/src/stdio/__overflow.c",
297  "$MUSLPORTINGDIR/src/stdio/__stdio_close.c",
298  "$MUSLPORTINGDIR/src/stdio/__stdio_read.c",
299  "$MUSLPORTINGDIR/src/stdio/__stdio_seek.c",
300  "$MUSLPORTINGDIR/src/stdio/__stdio_write.c",
301  "$MUSLPORTINGDIR/src/stdio/__stdout_write.c",
302  "$MUSLPORTINGDIR/src/stdio/__toread.c",
303  "$MUSLPORTINGDIR/src/stdio/__towrite.c",
304  "$MUSLPORTINGDIR/src/stdio/__uflow.c",
305  "$MUSLPORTINGDIR/src/stdio/fclose.c",
306  "$MUSLPORTINGDIR/src/stdio/feof.c",
307  "$MUSLPORTINGDIR/src/stdio/fflush.c",
308  "$MUSLPORTINGDIR/src/stdio/fgetc.c",
309  "$MUSLPORTINGDIR/src/stdio/fopen.c",
310  "$MUSLPORTINGDIR/src/stdio/fprintf.c",
311  "$MUSLPORTINGDIR/src/stdio/fputc.c",
312  "$MUSLPORTINGDIR/src/stdio/fputs.c",
313  "$MUSLPORTINGDIR/src/stdio/fread.c",
314  "$MUSLPORTINGDIR/src/stdio/fseek.c",
315  "$MUSLPORTINGDIR/src/stdio/ftell.c",
316  "$MUSLPORTINGDIR/src/stdio/fwrite.c",
317  "$MUSLPORTINGDIR/src/stdio/ofl.c",
318  "$MUSLPORTINGDIR/src/stdio/ofl_add.c",
319  "$MUSLPORTINGDIR/src/stdio/perror.c",
320  "$MUSLPORTINGDIR/src/stdio/printf.c",
321  "$MUSLPORTINGDIR/src/stdio/puts.c",
322  "$MUSLPORTINGDIR/src/stdio/remove.c",
323  "$MUSLPORTINGDIR/src/stdio/setvbuf.c",
324  "$MUSLPORTINGDIR/src/stdio/snprintf.c",
325  "$MUSLPORTINGDIR/src/stdio/sprintf.c",
326  "$MUSLPORTINGDIR/src/stdio/stderr.c",
327  "$MUSLPORTINGDIR/src/stdio/stdout.c",
328  "$MUSLPORTINGDIR/src/stdio/ungetc.c",
329  "$MUSLPORTINGDIR/src/stdio/vfprintf.c",
330  "$MUSLPORTINGDIR/src/stdio/vprintf.c",
331  "$MUSLPORTINGDIR/src/stdio/vsnprintf.c",
332  "$MUSLPORTINGDIR/src/stdio/vsprintf.c",
333  "$MUSLPORTINGDIR/src/stdlib/abs.c",
334  "$MUSLPORTINGDIR/src/stdlib/atoi.c",
335  "$MUSLPORTINGDIR/src/stdlib/strtod.c",
336  "$MUSLPORTINGDIR/src/stdlib/strtol.c",
337  "$MUSLPORTINGDIR/src/string/bzero.c",
338  "$MUSLPORTINGDIR/src/string/memchr.c",
339  "$MUSLPORTINGDIR/src/string/memcpy.c",
340  "$MUSLPORTINGDIR/src/string/memmove.c",
341  "$MUSLPORTINGDIR/src/string/memrchr.c",
342  "$MUSLPORTINGDIR/src/string/stpcpy.c",
343  "$MUSLPORTINGDIR/src/string/stpncpy.c",
344  "$MUSLPORTINGDIR/src/string/strcasecmp.c",
345  "$MUSLPORTINGDIR/src/string/strcasestr.c",
346  "$MUSLPORTINGDIR/src/string/strcat.c",
347  "$MUSLPORTINGDIR/src/string/strchr.c",
348  "$MUSLPORTINGDIR/src/string/strchrnul.c",
349  "$MUSLPORTINGDIR/src/string/strcmp.c",
350  "$MUSLPORTINGDIR/src/string/strcpy.c",
351  "$MUSLPORTINGDIR/src/string/strcspn.c",
352  "$MUSLPORTINGDIR/src/string/strdup.c",
353  "$MUSLPORTINGDIR/src/string/strerror_r.c",
354  "$MUSLPORTINGDIR/src/string/strlcat.c",
355  "$MUSLPORTINGDIR/src/string/strlcpy.c",
356  "$MUSLPORTINGDIR/src/string/strlen.c",
357  "$MUSLPORTINGDIR/src/string/strncasecmp.c",
358  "$MUSLPORTINGDIR/src/string/strncat.c",
359  "$MUSLPORTINGDIR/src/string/strncmp.c",
360  "$MUSLPORTINGDIR/src/string/strncpy.c",
361  "$MUSLPORTINGDIR/src/string/strndup.c",
362  "$MUSLPORTINGDIR/src/string/strnlen.c",
363  "$MUSLPORTINGDIR/src/string/strpbrk.c",
364  "$MUSLPORTINGDIR/src/string/strrchr.c",
365  "$MUSLPORTINGDIR/src/string/strsep.c",
366  "$MUSLPORTINGDIR/src/string/strspn.c",
367  "$MUSLPORTINGDIR/src/string/strstr.c",
368  "$MUSLPORTINGDIR/src/string/strtok.c",
369  "$MUSLPORTINGDIR/src/string/strtok_r.c",
370  "$MUSLPORTINGDIR/src/time/__month_to_secs.c",
371  "$MUSLPORTINGDIR/src/time/__secs_to_tm.c",
372  "$MUSLPORTINGDIR/src/time/__tm_to_secs.c",
373  "$MUSLPORTINGDIR/src/time/__tz.c",
374  "$MUSLPORTINGDIR/src/time/__year_to_secs.c",
375  "$MUSLPORTINGDIR/src/time/asctime.c",
376  "$MUSLPORTINGDIR/src/time/asctime_r.c",
377  "$MUSLPORTINGDIR/src/time/ctime.c",
378  "$MUSLPORTINGDIR/src/time/ctime_r.c",
379  "$MUSLPORTINGDIR/src/time/gmtime.c",
380  "$MUSLPORTINGDIR/src/time/gmtime_r.c",
381  "$MUSLPORTINGDIR/src/time/localtime.c",
382  "$MUSLPORTINGDIR/src/time/localtime_r.c",
383  "$MUSLPORTINGDIR/src/time/mktime.c",
384  "$MUSLPORTINGDIR/src/time/strftime.c",
385  "$MUSLPORTINGDIR/src/time/strptime.c",
386]
387
388MUSL_SRC_ARM = [
389  "$MUSLPORTINGDIR/src/math/arm/fabs.c",
390  "$MUSLPORTINGDIR/src/math/arm/fabsf.c",
391  "$MUSLPORTINGDIR/src/math/arm/fma.c",
392  "$MUSLPORTINGDIR/src/math/arm/fmaf.c",
393  "$MUSLPORTINGDIR/src/math/arm/sqrt.c",
394  "$MUSLPORTINGDIR/src/math/arm/sqrtf.c",
395]
396