1570af302Sopenharmony_ci# Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
2570af302Sopenharmony_ci# Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
3570af302Sopenharmony_ci#
4570af302Sopenharmony_ci# Redistribution and use in source and binary forms, with or without modification,
5570af302Sopenharmony_ci# are permitted provided that the following conditions are met:
6570af302Sopenharmony_ci#
7570af302Sopenharmony_ci# 1. Redistributions of source code must retain the above copyright notice, this list of
8570af302Sopenharmony_ci#    conditions and the following disclaimer.
9570af302Sopenharmony_ci#
10570af302Sopenharmony_ci# 2. Redistributions in binary form must reproduce the above copyright notice, this list
11570af302Sopenharmony_ci#    of conditions and the following disclaimer in the documentation and/or other materials
12570af302Sopenharmony_ci#    provided with the distribution.
13570af302Sopenharmony_ci#
14570af302Sopenharmony_ci# 3. Neither the name of the copyright holder nor the names of its contributors may be used
15570af302Sopenharmony_ci#    to endorse or promote products derived from this software without specific prior written
16570af302Sopenharmony_ci#    permission.
17570af302Sopenharmony_ci#
18570af302Sopenharmony_ci# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19570af302Sopenharmony_ci# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20570af302Sopenharmony_ci# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21570af302Sopenharmony_ci# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
22570af302Sopenharmony_ci# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23570af302Sopenharmony_ci# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24570af302Sopenharmony_ci# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25570af302Sopenharmony_ci# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26570af302Sopenharmony_ci# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27570af302Sopenharmony_ci# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28570af302Sopenharmony_ci# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29570af302Sopenharmony_ci
30570af302Sopenharmony_ciMUSLPORTINGDIR = get_path_info(".", "abspath")
31570af302Sopenharmony_ci
32570af302Sopenharmony_ciMUSL_SRC_COMMON = [
33570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/ctype/__ctype_get_mb_cur_max.c",
34570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/ctype/isalpha.c",
35570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/ctype/isdigit.c",
36570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/ctype/islower.c",
37570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/ctype/isspace.c",
38570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/ctype/isupper.c",
39570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/ctype/isxdigit.c",
40570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/ctype/tolower.c",
41570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/ctype/toupper.c",
42570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/errno/strerror.c",
43570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/exit/assert.c",
44570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/fenv/fenv.c",
45570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/internal/floatscan.c",
46570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/internal/intscan.c",
47570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/internal/shgetc.c",
48570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/linux/stime.c",
49570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/locale/__lctrans.c",
50570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/locale/__mo_lookup.c",
51570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/locale/c_locale.c",
52570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/locale/langinfo.c",
53570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/locale/locale_map.c",
54570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__cos.c",
55570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__cosdf.c",
56570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__cosl.c",
57570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__expo2.c",
58570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__expo2f.c",
59570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__fpclassify.c",
60570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__fpclassifyf.c",
61570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__fpclassifyl.c",
62570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__invtrigl.c",
63570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__math_divzero.c",
64570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__math_divzerof.c",
65570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__math_invalid.c",
66570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__math_invalidl.c",
67570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__math_invalidf.c",
68570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__math_oflow.c",
69570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__math_oflowf.c",
70570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__math_uflow.c",
71570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__math_uflowf.c",
72570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__math_xflow.c",
73570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__math_xflowf.c",
74570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__polevll.c",
75570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__rem_pio2.c",
76570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__rem_pio2_large.c",
77570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__rem_pio2f.c",
78570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__rem_pio2l.c",
79570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__signbit.c",
80570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__signbitf.c",
81570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__signbitl.c",
82570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__sin.c",
83570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__sindf.c",
84570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__sinl.c",
85570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__tan.c",
86570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__tandf.c",
87570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/__tanl.c",
88570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/acos.c",
89570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/acosf.c",
90570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/acosh.c",
91570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/acoshf.c",
92570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/acoshl.c",
93570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/acosl.c",
94570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/asin.c",
95570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/asinf.c",
96570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/asinh.c",
97570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/asinhf.c",
98570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/asinhl.c",
99570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/asinl.c",
100570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/atan.c",
101570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/atan2.c",
102570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/atan2f.c",
103570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/atan2l.c",
104570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/atanf.c",
105570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/atanh.c",
106570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/atanhf.c",
107570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/atanhl.c",
108570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/atanl.c",
109570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/cbrt.c",
110570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/cbrtf.c",
111570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/cbrtl.c",
112570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/ceil.c",
113570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/ceilf.c",
114570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/ceill.c",
115570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/copysign.c",
116570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/copysignf.c",
117570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/copysignl.c",
118570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/cos.c",
119570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/cosf.c",
120570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/cosh.c",
121570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/coshf.c",
122570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/coshl.c",
123570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/cosl.c",
124570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/erf.c",
125570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/erff.c",
126570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/erfl.c",
127570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/exp.c",
128570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/exp10.c",
129570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/exp10f.c",
130570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/exp10l.c",
131570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/exp2.c",
132570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/exp2f.c",
133570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/exp2f_data.c",
134570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/exp2l.c",
135570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/exp_data.c",
136570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/expf.c",
137570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/expl.c",
138570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/expm1.c",
139570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/expm1f.c",
140570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/expm1l.c",
141570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fabs.c",
142570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fabsf.c",
143570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fabsl.c",
144570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fdim.c",
145570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fdimf.c",
146570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fdiml.c",
147570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/finite.c",
148570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/finitef.c",
149570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/floor.c",
150570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/floorf.c",
151570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/floorl.c",
152570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fma.c",
153570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fmaf.c",
154570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fmal.c",
155570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fmax.c",
156570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fmaxf.c",
157570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fmaxl.c",
158570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fmin.c",
159570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fminf.c",
160570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fminl.c",
161570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fmod.c",
162570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fmodf.c",
163570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/fmodl.c",
164570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/frexp.c",
165570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/frexpf.c",
166570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/frexpl.c",
167570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/hypot.c",
168570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/hypotf.c",
169570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/hypotl.c",
170570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/ilogb.c",
171570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/ilogbf.c",
172570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/ilogbl.c",
173570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/j0.c",
174570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/j0f.c",
175570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/j1.c",
176570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/j1f.c",
177570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/jn.c",
178570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/jnf.c",
179570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/ldexp.c",
180570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/ldexpf.c",
181570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/ldexpl.c",
182570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/lgamma.c",
183570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/lgamma_r.c",
184570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/lgammaf.c",
185570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/lgammaf_r.c",
186570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/lgammal.c",
187570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/llrint.c",
188570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/llrintf.c",
189570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/llrintl.c",
190570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/llround.c",
191570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/llroundf.c",
192570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/llroundl.c",
193570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log.c",
194570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log10.c",
195570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log10f.c",
196570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log10l.c",
197570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log1p.c",
198570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log1pf.c",
199570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log1pl.c",
200570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log2.c",
201570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log2_data.c",
202570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log2f.c",
203570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log2f_data.c",
204570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log2l.c",
205570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/log_data.c",
206570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/logb.c",
207570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/logbf.c",
208570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/logbl.c",
209570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/logf.c",
210570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/logf_data.c",
211570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/logl.c",
212570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/lrint.c",
213570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/lrintf.c",
214570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/lrintl.c",
215570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/lround.c",
216570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/lroundf.c",
217570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/lroundl.c",
218570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/modf.c",
219570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/modff.c",
220570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/modfl.c",
221570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/nan.c",
222570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/nanf.c",
223570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/nanl.c",
224570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/nearbyint.c",
225570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/nearbyintf.c",
226570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/nearbyintl.c",
227570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/nextafter.c",
228570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/nextafterf.c",
229570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/nextafterl.c",
230570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/nexttoward.c",
231570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/nexttowardf.c",
232570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/nexttowardl.c",
233570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/pow.c",
234570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/pow_data.c",
235570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/powf.c",
236570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/powf_data.c",
237570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/powl.c",
238570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/remainder.c",
239570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/remainderf.c",
240570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/remainderl.c",
241570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/remquo.c",
242570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/remquof.c",
243570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/remquol.c",
244570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/rint.c",
245570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/rintf.c",
246570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/rintl.c",
247570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/round.c",
248570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/roundf.c",
249570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/roundl.c",
250570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/scalb.c",
251570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/scalbf.c",
252570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/scalbln.c",
253570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/scalblnf.c",
254570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/scalblnl.c",
255570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/scalbn.c",
256570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/scalbnf.c",
257570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/scalbnl.c",
258570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/signgam.c",
259570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/significand.c",
260570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/significandf.c",
261570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sin.c",
262570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sincos.c",
263570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sincosf.c",
264570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sincosl.c",
265570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sinf.c",
266570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sinh.c",
267570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sinhf.c",
268570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sinhl.c",
269570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sinl.c",
270570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sqrt.c",
271570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sqrt_data.c",
272570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sqrtf.c",
273570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/sqrtl.c",
274570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/tan.c",
275570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/tanf.c",
276570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/tanh.c",
277570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/tanhf.c",
278570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/tanhl.c",
279570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/tanl.c",
280570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/tgamma.c",
281570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/tgammaf.c",
282570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/tgammal.c",
283570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/trunc.c",
284570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/truncf.c",
285570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/truncl.c",
286570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/multibyte/internal.c",
287570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/multibyte/mbtowc.c",
288570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/multibyte/wcrtomb.c",
289570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/multibyte/wctomb.c",
290570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/network/htonl.c",
291570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/network/htons.c",
292570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/network/ntohl.c",
293570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/network/ntohs.c",
294570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/prng/random.c",
295570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/__fdopen.c",
296570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/__fmodeflags.c",
297570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/__lockfile.c",
298570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/__overflow.c",
299570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/__stdio_close.c",
300570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/__stdio_read.c",
301570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/__stdio_seek.c",
302570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/__stdio_write.c",
303570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/__stdout_write.c",
304570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/__toread.c",
305570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/__towrite.c",
306570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/__uflow.c",
307570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/fclose.c",
308570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/feof.c",
309570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/fflush.c",
310570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/fgetc.c",
311570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/fopen.c",
312570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/fprintf.c",
313570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/fputc.c",
314570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/fputs.c",
315570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/fread.c",
316570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/fseek.c",
317570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/ftell.c",
318570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/fwrite.c",
319570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/ofl.c",
320570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/ofl_add.c",
321570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/perror.c",
322570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/printf.c",
323570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/puts.c",
324570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/remove.c",
325570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/setvbuf.c",
326570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/snprintf.c",
327570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/sprintf.c",
328570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/stderr.c",
329570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/stdout.c",
330570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/ungetc.c",
331570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/vfprintf.c",
332570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/vprintf.c",
333570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/vsnprintf.c",
334570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdio/vsprintf.c",
335570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdlib/abs.c",
336570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdlib/atoi.c",
337570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdlib/strtod.c",
338570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/stdlib/strtol.c",
339570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/bzero.c",
340570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/memchr.c",
341570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/memcpy.c",
342570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/memmove.c",
343570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/memrchr.c",
344570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/stpcpy.c",
345570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/stpncpy.c",
346570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strcasecmp.c",
347570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strcasestr.c",
348570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strcat.c",
349570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strchr.c",
350570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strchrnul.c",
351570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strcmp.c",
352570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strcpy.c",
353570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strcspn.c",
354570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strdup.c",
355570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strerror_r.c",
356570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strlcat.c",
357570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strlcpy.c",
358570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strlen.c",
359570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strncasecmp.c",
360570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strncat.c",
361570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strncmp.c",
362570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strncpy.c",
363570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strndup.c",
364570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strnlen.c",
365570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strpbrk.c",
366570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strrchr.c",
367570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strsep.c",
368570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strspn.c",
369570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strstr.c",
370570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strtok.c",
371570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/string/strtok_r.c",
372570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/__month_to_secs.c",
373570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/__secs_to_tm.c",
374570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/__tm_to_secs.c",
375570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/__tz.c",
376570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/__year_to_secs.c",
377570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/asctime.c",
378570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/asctime_r.c",
379570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/ctime.c",
380570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/ctime_r.c",
381570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/gmtime.c",
382570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/gmtime_r.c",
383570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/localtime.c",
384570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/localtime_r.c",
385570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/mktime.c",
386570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/strftime.c",
387570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/time/strptime.c",
388570af302Sopenharmony_ci]
389570af302Sopenharmony_ci
390570af302Sopenharmony_ciMUSL_SRC_ARM = [
391570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/arm/fabs.c",
392570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/arm/fabsf.c",
393570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/arm/fma.c",
394570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/arm/fmaf.c",
395570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/arm/sqrt.c",
396570af302Sopenharmony_ci  "$MUSLPORTINGDIR/src/math/arm/sqrtf.c",
397570af302Sopenharmony_ci]
398