Simplify sendmmsg code.
[glibc.git] / math / Makefile
blob634c6190c2d3bf0e00803dbd0b9cb6f084e7fad1
1 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <http://www.gnu.org/licenses/>.
18 # Makefile for the math library.
20 subdir := math
22 include ../Makeconfig
24 # Installed header files.
25 headers := math.h bits/mathcalls.h bits/mathinline.h bits/huge_val.h \
26 bits/huge_valf.h bits/huge_vall.h bits/inf.h bits/nan.h \
27 fpu_control.h complex.h bits/cmathcalls.h fenv.h \
28 bits/fenv.h bits/fenvinline.h bits/mathdef.h tgmath.h \
29 bits/math-finite.h bits/math-vector.h \
30 bits/libm-simd-decl-stubs.h bits/iscanonical.h \
31 bits/flt-eval-method.h bits/fp-fast.h bits/fp-logb.h \
32 bits/long-double.h bits/mathcalls-helper-functions.h
34 # FPU support code.
35 aux := setfpucw fpu_control
37 # Build the -lm library.
39 extra-libs := libm
40 extra-libs-others = $(extra-libs)
42 libm-support = s_lib_version s_matherr s_signgam \
43 fclrexcpt fgetexcptflg fraiseexcpt fsetexcptflg \
44 ftestexcept fegetround fesetround fegetenv feholdexcpt \
45 fesetenv feupdateenv t_exp fedisblxcpt feenablxcpt \
46 fegetexcept fesetexcept fetestexceptflag fegetmode \
47 fesetmode
49 # Wrappers for these functions generated per type using a file named
50 # <func>_template.c and the appropriate math-type-macros-<TYPE>.h.
51 gen-libm-calls = cargF conjF cimagF crealF cabsF s_cacosF \
52 s_cacoshF s_ccosF s_ccoshF s_casinF s_csinF s_casinhF \
53 k_casinhF s_csinhF k_casinhF s_csinhF s_catanhF s_catanF \
54 s_ctanF s_ctanhF s_cexpF s_clogF s_cprojF s_csqrtF \
55 s_cpowF s_clog10F s_fdimF s_nextdownF s_fmaxF s_fminF \
56 s_nanF s_iseqsigF s_canonicalizeF w_ilogbF w_llogbF \
57 w_log1pF w_scalblnF s_fmaxmagF s_fminmagF w_acosF \
58 w_acoshF w_asinF w_atan2F w_atanhF w_coshF w_exp10F \
59 w_exp2F w_fmodF w_hypotF w_j0F w_j1F w_jnF w_logF \
60 w_log10F w_log2F w_powF w_remainderF w_sinhF w_sqrtF \
61 w_tgammaF w_lgammaF w_lgammaF_r w_expF
63 libm-calls = \
64 e_acosF e_acoshF e_asinF e_atan2F e_atanhF e_coshF e_expF e_fmodF \
65 e_hypotF e_j0F e_j1F e_jnF e_lgammaF_r e_logF e_log10F e_powF \
66 e_rem_pio2F e_remainderF e_scalbF e_sinhF e_sqrtF e_gammaF_r \
67 e_ilogbF \
68 k_cosF k_sinF k_tanF s_asinhF s_atanF s_cbrtF \
69 s_ceilF s_cosF s_erfF s_expm1F s_fabsF \
70 s_floorF s_log1pF s_logbF \
71 s_nextafterF s_nexttowardF s_rintF s_scalblnF \
72 s_significandF s_sinF s_tanF s_tanhF \
73 s_fpclassifyF s_truncF \
74 s_remquoF e_log2F e_exp2F s_roundF s_nearbyintF s_sincosF \
75 s_fmaF s_lrintF s_llrintF s_lroundF s_llroundF e_exp10F \
76 s_issignalingF $(calls:s_%=m_%) x2y2m1F \
77 gamma_productF lgamma_negF lgamma_productF \
78 s_nextupF s_totalorderF s_totalordermagF s_getpayloadF \
79 s_setpayloadF s_setpayloadsigF s_roundevenF s_fromfpF s_ufromfpF \
80 s_fromfpxF s_ufromfpxF $(gen-libm-calls)
82 libm-compat-calls = \
83 w_acosF_compat w_acoshF_compat w_asinF_compat w_atan2F_compat \
84 w_atanhF_compat w_coshF_compat w_exp2F_compat w_exp10F_compat \
85 w_fmodF_compat w_hypotF_compat w_j0F_compat w_j1F_compat \
86 w_jnF_compat w_log2F_compat w_log10F_compat w_logF_compat \
87 w_powF_compat w_remainderF_compat w_scalbF_compat \
88 w_sinhF_compat w_sqrtF_compat w_tgammaF_compat \
89 w_lgammaF_r_compat w_lgammaF_compat2 w_expF_compat \
90 w_lgamma_compatF k_standardF
92 # Type specific routine support.
94 # The following three variables control what is included for each type:
96 # type-floatN-suffix = The suffix of the type
97 # type-floatN-routines = Type specific support objects
98 # type-floatN-yes = If the type is supported, evaluates to floatN
100 # Finally, note that types is an intentionally recursive variable.
101 # We only know the full set of supported types for the target machine
102 # after the Rules makefile has been parsed.
103 types-basic = $(type-ldouble-$(long-double-fcts)) double float
105 # long double support
106 type-ldouble-suffix := l
107 type-ldouble-routines := t_sincosl k_sincosl s_iscanonicall
108 type-ldouble-yes := ldouble
110 # double support
111 type-double-suffix :=
112 type-double-routines := branred doasin dosincos halfulp mpa mpatan2 \
113 mpatan mpexp mplog mpsqrt mptan sincos32 slowexp \
114 slowpow sincostab k_rem_pio2
116 # float support
117 type-float-suffix := f
118 type-float-routines := k_rem_pio2f
120 # _Float128 support
121 type-float128-suffix := f128
122 type-float128-routines := t_sincosf128 k_sincosf128
123 type-float128-yes := float128
124 types = $(types-basic) $(type-float128-$(float128-fcts))
126 # For each of the basic types (float, double, long double), replace the
127 # occurrences of 'F' in arg 1 with the appropriate suffix for the type.
128 type-basic-foreach = $(foreach t, $(types-basic), \
129 $(subst F,$(type-$(t)-suffix),$(1)))
131 # Apply suffix to each type in arg 1
132 type-foreach = $(foreach t,$(types),$(subst F,$(type-$(t)-suffix),$(1)))
134 libm-routines = $(strip $(libm-support) \
135 $(call type-basic-foreach, \
136 $(libm-compat-calls)) \
137 $(call type-foreach, $(libm-calls)) \
138 $(foreach t, $(types), $(type-$(t)-routines))) \
140 # These functions are in libc instead of libm because __printf_fp
141 # calls them, so any program using printf will need them linked in,
142 # and we don't want to have to link every program with -lm.
143 # In libm-calls (above), list m_foo in place of s_foo for any
144 # routine that should be compiled separately for its libc and libm versions.
145 calls = s_isinfF s_isnanF s_finiteF s_copysignF s_modfF s_scalbnF s_frexpF \
146 s_signbitF $(gen-calls)
147 gen-calls = s_ldexpF
148 generated += $(foreach s,.c .S,$(call type-foreach, $(calls:s_%=m_%$(s))))
149 routines = $(call type-foreach, $(calls))
151 ifeq ($(build-mathvec),yes)
152 # We need to install libm.so and libm.a as linker scripts
153 # for transparent use of vector math library.
154 install-lib-ldscripts := libm.so libm.a
155 install-others = $(inst_libdir)/libm.so $(inst_libdir)/libm.a
156 $(inst_libdir)/libm.so: $(common-objpfx)format.lds \
157 $(libm) \
158 $(libmvec) \
159 $(+force)
160 (echo '/* GNU ld script'; echo '*/';\
161 cat $<; \
162 echo 'GROUP ( $(slibdir)/libm.so$(libm.so-version) ' \
163 'AS_NEEDED ( $(libdir)/libmvec_nonshared.a $(slibdir)/libmvec.so$(libmvec.so-version) ) )' \
164 ) > $@.new
165 mv -f $@.new $@
167 $(inst_libdir)/libm-$(version).a: $(objpfx)libm.a \
168 $(+force)
169 $(do-install)
171 $(inst_libdir)/libm.a: $(common-objpfx)format.lds \
172 $(inst_libdir)/libm-$(version).a \
173 $(objpfx)../mathvec/libmvec.a \
174 $(+force)
175 (echo '/* GNU ld script'; echo '*/';\
176 cat $<; \
177 echo 'GROUP ( $(libdir)/libm-$(version).a $(libdir)/libmvec.a )' \
178 ) > $@.new
179 mv -f $@.new $@
180 endif
182 # Rules for the test suite.
183 tests = test-matherr test-fenv atest-exp atest-sincos atest-exp2 basic-test \
184 test-misc test-fpucw test-fpucw-ieee tst-definitions test-tgmath \
185 test-tgmath-ret bug-nextafter bug-nexttoward bug-tgmath1 \
186 test-tgmath-int test-tgmath2 test-powl tst-CMPLX tst-CMPLX2 test-snan \
187 test-fenv-tls test-fenv-preserve test-fenv-return test-fenvinline \
188 test-nearbyint-except test-fenv-clear test-signgam-finite \
189 test-signgam-finite-c99 test-signgam-finite-c11 \
190 test-nearbyint-except-2 test-signgam-uchar test-signgam-uchar-init \
191 test-signgam-uint test-signgam-uint-init test-signgam-ullong \
192 test-signgam-ullong-init test-nan-overflow test-nan-payload \
193 test-fexcept test-fexcept-traps test-fesetexcept \
194 test-fesetexcept-traps test-fetestexceptflag test-femode \
195 test-femode-traps test-iszero-excess-precision \
196 test-iseqsig-excess-precision test-flt-eval-method \
197 test-fp-ilogb-constants test-fp-llogb-constants \
198 test-fe-snans-always-signal $(tests-static)
199 tests-static = test-fpucw-static test-fpucw-ieee-static \
200 test-signgam-uchar-static test-signgam-uchar-init-static \
201 test-signgam-uint-static test-signgam-uint-init-static \
202 test-signgam-ullong-static test-signgam-ullong-init-static
204 ifneq (,$(CXX))
205 tests += test-math-isinff test-math-iszero
206 endif
208 ifneq (no,$(PERL))
209 libm-vec-tests = $(addprefix test-,$(libmvec-tests))
210 libm-test-support = $(foreach t,$(types),libm-test-support-$(t))
211 test-extras += $(libm-test-support)
212 extra-test-objs += $(addsuffix .o, $(libm-test-support))
213 libm-vec-test-wrappers = $(addsuffix -wrappers, $(libm-vec-tests))
214 test-extras += $(libm-vec-test-wrappers)
215 extra-test-objs += $(addsuffix .o, $(libm-vec-test-wrappers))
217 ulps-file = $(firstword $(wildcard $(sysdirs:%=%/libm-test-ulps)))
219 $(objpfx)libm-test-ulps.h: $(ulps-file) gen-libm-test.pl
220 $(make-target-directory)
221 $(PERL) gen-libm-test.pl -u $< -H $@
223 libm-test-funcs-auto = acos acosh asin asinh atan atan2 atanh cabs cacos \
224 cacosh carg casin casinh catan catanh cbrt ccos ccosh \
225 cexp clog clog10 cos cosh cpow csin csinh csqrt ctan \
226 ctanh erf erfc exp exp10 exp2 expm1 fma hypot j0 j1 jn \
227 lgamma log log10 log1p log2 pow sin sincos sinh sqrt \
228 tan tanh tgamma y0 y1 yn
229 libm-test-funcs-noauto = canonicalize ceil cimag conj copysign cproj creal \
230 fabs fdim floor fmax fmaxmag fmin fminmag fmod \
231 fpclassify frexp fromfp fromfpx getpayload ilogb \
232 iscanonical iseqsig isfinite isgreater \
233 isgreaterequal isinf isless islessequal \
234 islessgreater isnan isnormal issignaling issubnormal \
235 isunordered iszero llogb llrint llround logb lrint \
236 lround modf nearbyint nextafter nextdown nexttoward \
237 nextup remainder remquo rint round roundeven scalb \
238 scalbln scalbn setpayload setpayloadsig signbit \
239 significand totalorder totalordermag trunc ufromfp \
240 ufromfpx
241 libm-test-funcs-all = $(libm-test-funcs-auto) $(libm-test-funcs-noauto)
242 libm-test-c-auto = $(foreach f,$(libm-test-funcs-auto),libm-test-$(f).c)
243 libm-test-c-noauto = $(foreach f,$(libm-test-funcs-noauto),libm-test-$(f).c)
244 generated += libm-test-ulps.h $(libm-test-c-auto) $(libm-test-c-noauto)
246 libm-tests-base-normal = $(foreach t,$(types),test-$(t))
247 libm-tests-base-finite = $(foreach t,$(types),test-$(t)-finite)
248 libm-tests-base-inline = $(foreach t,$(types),test-i$(t))
249 libm-tests-base = $(libm-tests-base-normal) $(libm-tests-base-finite) \
250 $(libm-tests-base-inline) $(libm-vec-tests)
251 libm-tests-normal = $(foreach t,$(libm-tests-base-normal),\
252 $(foreach f,$(libm-test-funcs-all),\
253 $(t)-$(f)))
254 libm-tests-finite = $(foreach t,$(libm-tests-base-finite),\
255 $(foreach f,$(libm-test-funcs-all),\
256 $(t)-$(f)))
257 libm-tests-inline = $(foreach t,$(libm-tests-base-inline),\
258 $(foreach f,$(libm-test-funcs-all),\
259 $(t)-$(f)))
260 libm-tests-vector = $(foreach t,$(libmvec-tests),\
261 $(foreach f,$($(t)-funcs),test-$(t)-$(f)))
262 libm-tests = $(libm-tests-normal) $(libm-tests-finite) $(libm-tests-inline) \
263 $(libm-tests-vector)
264 libm-tests-for-type = $(foreach f,$(libm-test-funcs-all),\
265 test-$(1)-$(f) test-$(1)-finite-$(f) \
266 test-i$(1)-$(f)) \
267 $(filter test-$(1)-%,$(libm-tests-vector))
269 libm-tests.o = $(addsuffix .o,$(libm-tests))
271 tests += $(libm-tests)
272 generated += $(addsuffix .c,$(libm-tests)) \
273 $(foreach t,$(types),libm-test-support-$(t).c)
275 libm-test-c-auto-obj = $(addprefix $(objpfx),$(libm-test-c-auto))
276 libm-test-c-noauto-obj = $(addprefix $(objpfx),$(libm-test-c-noauto))
278 $(libm-test-c-noauto-obj): $(objpfx)libm-test%.c: libm-test%.inc \
279 gen-libm-test.pl
280 $(make-target-directory)
281 $(PERL) gen-libm-test.pl -c $< -a /dev/null -C $@
283 $(libm-test-c-auto-obj): $(objpfx)libm-test%.c: libm-test%.inc \
284 gen-libm-test.pl \
285 auto-libm-test-out%
286 $(make-target-directory)
287 $(PERL) gen-libm-test.pl -c $< -a auto-libm-test-out$* -C $@
289 libm-test-incs = $(foreach f,$(libm-test-funcs-all),libm-test-$(f).inc)
290 endif
292 libm-test-fast-math-cflags = -fno-builtin -D__FAST_MATH__ -DTEST_FAST_MATH
293 libm-test-vec-cflags = $(libm-test-fast-math-cflags) -fno-inline \
294 -ffloat-store -D_OPENMP=201307 -Wno-unknown-pragmas
296 CFLAGS-test-double-vlen4-wrappers.c = $(double-vlen4-arch-ext-cflags)
298 CFLAGS-test-double-vlen8-wrappers.c = $(double-vlen8-arch-ext-cflags)
300 CFLAGS-test-float-vlen8-wrappers.c = $(float-vlen8-arch-ext-cflags)
302 CFLAGS-test-float-vlen16-wrappers.c = $(float-vlen16-arch-ext-cflags)
304 # The no-inline tests use -fsignaling-nans, and thereby use the
305 # versions of classification macros that support sNaNs. The inline
306 # function tests use the versions of classification macros that may
307 # raise spurious exceptions for sNaNs, but also do not test for
308 # exceptions. Thus both versions of the classification macros are
309 # validated.
310 libm-test-no-inline-cflags = -fno-inline -ffloat-store -fno-builtin \
311 -fsignaling-nans
312 libm-test-finite-cflags = $(libm-test-no-inline-cflags) \
313 -U__FINITE_MATH_ONLY__ -D__FINITE_MATH_ONLY__=1
314 libm-test-inline-cflags = $(libm-test-fast-math-cflags)
315 CFLAGS-test-tgmath.c = -fno-builtin
316 # The following testcase uses very long lines (>3 million), so it may take a
317 # while to compile it. See: http://llvm.org/bugs/show_bug.cgi?id=14106 and
318 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54402
319 CFLAGS-test-tgmath2.c = -fno-builtin
320 CFLAGS-test-tgmath-ret.c = -fno-builtin
321 CFLAGS-test-powl.c = -fno-builtin
323 CFLAGS-test-snan.c = -fsignaling-nans
325 CFLAGS-test-signgam-finite.c = -ffinite-math-only
326 CFLAGS-test-signgam-finite-c99.c = -ffinite-math-only -std=c99
327 CFLAGS-test-signgam-finite-c11.c = -ffinite-math-only -std=c11
328 CFLAGS-test-signgam-uchar.c = -std=c99
329 CFLAGS-test-signgam-uchar-init.c = -std=c99
330 CFLAGS-test-signgam-uchar-static.c = -std=c99
331 CFLAGS-test-signgam-uchar-init-static.c = -std=c99
332 CFLAGS-test-signgam-uint.c = -std=c99
333 CFLAGS-test-signgam-uint-init.c = -std=c99
334 CFLAGS-test-signgam-uint-static.c = -std=c99
335 CFLAGS-test-signgam-uint-init-static.c = -std=c99
336 CFLAGS-test-signgam-ullong.c = -std=c99
337 CFLAGS-test-signgam-ullong-init.c = -std=c99
338 CFLAGS-test-signgam-ullong-static.c = -std=c99
339 CFLAGS-test-signgam-ullong-init-static.c = -std=c99
341 CFLAGS-test-math-isinff.cc = -std=gnu++11
342 CFLAGS-test-math-iszero.cc = -std=gnu++11
344 CFLAGS-test-iszero-excess-precision.c = -fexcess-precision=standard
345 CFLAGS-test-iseqsig-excess-precision.c = -fexcess-precision=standard
346 CFLAGS-test-flt-eval-method.c = -fexcess-precision=standard
348 CFLAGS-test-fe-snans-always-signal.c = -fsignaling-nans
350 # The -lieee module sets the _LIB_VERSION_ switch to IEEE mode
351 # for error handling in the -lm functions.
352 install-lib += libieee.a
353 non-lib.a += libieee.a
354 extra-objs += libieee.a ieee-math.o
356 include ../Rules
358 gen-all-calls = $(gen-libm-calls) $(gen-calls)
360 generated += $(addsuffix .c,$(call type-foreach,$(gen-all-calls))) \
361 gen-libm-templates.stmp
363 # Create wrappers in the math build directory.
364 $(objpfx)gen-libm-templates.stmp: Makefile
365 $(make-target-directory)
366 for gcall in $(gen-all-calls); do \
367 func=$${gcall%F*}$${gcall#*F}; \
368 for type in $(foreach t,$(types),$(t)__$(type-$(t)-suffix)); do \
369 suff=$${type#*__}; \
370 type=$${type%__*}; \
371 file=$(objpfx)$${gcall%F*}$${suff}$${gcall#*F}.c; \
373 echo "#include <math-type-macros-$${type}.h>"; \
374 echo "#include <$${func}_template.c>"; \
375 ) > $${file}; \
376 done; \
377 done; \
378 echo > $(@)
380 # Add dependency to ensure the generator runs prior.
381 $(foreach t, $(call type-foreach, $(gen-all-calls)), \
382 $(objpfx)$(t).c): $(objpfx)gen-libm-templates.stmp
384 ifneq (no,$(PERL))
385 # This must come after the inclusion of sysdeps Makefiles via Rules.
387 $(foreach t,$(libm-tests-normal),$(objpfx)$(t).c): $(objpfx)test-%.c:
388 type_func=$*; \
389 type=$${type_func%%-*}; \
390 func=$${type_func#*-}; \
392 echo "#include <test-$$type.h>"; \
393 echo "#include <test-math-no-finite.h>"; \
394 echo "#include <test-math-no-inline.h>"; \
395 echo "#include <test-math-errno.h>"; \
396 echo "#include <test-math-scalar.h>"; \
397 echo "#include <libm-test-$$func.c>"; \
398 ) > $@
400 $(foreach t,$(libm-tests-finite),$(objpfx)$(t).c): $(objpfx)test-%.c:
401 type_func=$*; \
402 type=$${type_func%%-*}; \
403 func=$${type_func#*-finite-}; \
405 echo "#include <test-$$type.h>"; \
406 echo "#include <test-math-finite.h>"; \
407 echo "#include <test-math-no-inline.h>"; \
408 echo "#include <test-math-scalar.h>"; \
409 echo "#include <libm-test-$$func.c>"; \
410 ) > $@
412 $(foreach t,$(libm-tests-inline),$(objpfx)$(t).c): $(objpfx)test-i%.c:
413 type_func=$*; \
414 type=$${type_func%%-*}; \
415 func=$${type_func#*-}; \
417 echo "#include <test-$$type.h>"; \
418 echo "#include <test-math-inline.h>"; \
419 echo "#include <test-math-scalar.h>"; \
420 echo "#include <libm-test-$$func.c>"; \
421 ) > $@
423 $(foreach t,$(libm-tests-vector),$(objpfx)$(t).c): $(objpfx)test-%.c:
424 type_func=$*; \
425 type=$${type_func%-*}; \
426 func=$${type_func##*-}; \
427 func_args=$$(grep ALL_RM_TEST libm-test-$$func.inc \
428 | sed 's/.*RUN_TEST_LOOP_//;s/_.*//'); \
430 echo "#include <test-$$type.h>"; \
431 echo "WRAPPER_DECL_$$func_args (WRAPPER_NAME (FUNC ($$func)))"; \
432 echo "#include <libm-test-$$func.c>"; \
433 ) > $@
435 $(foreach t,$(types),\
436 $(objpfx)libm-test-support-$(t).c): $(objpfx)libm-test-support-%.c:
438 echo "#include <test-$*.h>"; \
439 echo "#include <libm-test-support.c>"; \
440 ) > $@
442 $(addprefix $(objpfx), $(libm-tests.o)): $(objpfx)libm-test-ulps.h
444 define o-iterator-doit
445 $(foreach f,$(libm-test-funcs-all),\
446 $(objpfx)$(o)-$(f).o): $(objpfx)$(o)%.o: $(objpfx)libm-test%.c
447 endef
448 object-suffixes-left := $(libm-tests-base)
449 include $(o-iterator)
451 define o-iterator-doit
452 $(foreach f,$(libm-test-funcs-all),\
453 $(objpfx)$(o)-$(f).o): CFLAGS += $(libm-test-no-inline-cflags)
454 endef
455 object-suffixes-left := $(libm-tests-base-normal)
456 include $(o-iterator)
458 define o-iterator-doit
459 $(foreach f,$(libm-test-funcs-all),\
460 $(objpfx)$(o)-$(f).o): CFLAGS += $(libm-test-finite-cflags)
461 endef
462 object-suffixes-left := $(libm-tests-base-finite)
463 include $(o-iterator)
465 define o-iterator-doit
466 $(foreach f,$(libm-test-funcs-all),\
467 $(objpfx)$(o)-$(f).o): CFLAGS += $(libm-test-inline-cflags)
468 endef
469 object-suffixes-left := $(libm-tests-base-inline)
470 include $(o-iterator)
472 define o-iterator-doit
473 $(foreach f,$($(o)-funcs),\
474 $(objpfx)test-$(o)-$(f).o): CFLAGS += $(libm-test-vec-cflags)
475 endef
476 object-suffixes-left := $(libmvec-tests)
477 include $(o-iterator)
479 define o-iterator-doit
480 $(addprefix $(objpfx),\
481 $(call libm-tests-for-type,$(o))): $(objpfx)libm-test-support-$(o).o
482 endef
483 object-suffixes-left := $(types)
484 include $(o-iterator)
486 define o-iterator-doit
487 $(objpfx)libm-test-support-$(o).o: CFLAGS += $(libm-test-no-inline-cflags)
488 endef
489 object-suffixes-left := $(types)
490 include $(o-iterator)
492 # Run the math programs to automatically generate ULPs files.
493 .PHONY: regen-ulps
495 run-regen-ulps = $(test-wrapper-env) \
496 $(run-program-env) \
497 $($*-ENV) $(rtld-prefix) $${run}
499 regen-ulps: $(addprefix $(objpfx),$(libm-tests))
500 rm -f $(objpfx)ULPs; rm -f $(objpfx)NewUlps; \
501 cp $(ulps-file) $(objpfx)libm-test-ulps; \
502 for run in $^; do \
503 echo "Regenerating ULPs for $${run}"; \
504 $(run-regen-ulps) -u -o $(objpfx); \
505 cat $(objpfx)ULPs >> $(objpfx)libm-test-ulps; \
506 rm $(objpfx)ULPs; \
507 done; \
508 $(PERL) gen-libm-test.pl -n $(objpfx)NewUlps \
509 -u $(objpfx)libm-test-ulps; \
510 echo "Automatic regeneration of ULPs complete."; \
511 echo "Difference between the current baseline and the new baseline is:";\
512 diff -urN $(ulps-file) $(objpfx)NewUlps; \
513 echo "Copy $(objpfx)NewUlps to $(ulps-file) (relative to source)."
514 else
515 regen-ulps:
516 @echo "Automatic regeneration of ULPs requires perl."; \
517 exit 1;
518 endif
520 # The generated sysd-rules file defines rules like this for sources
521 # coming from sysdeps/ directories. These rules find the generic sources.
522 define o-iterator-doit
523 $(objpfx)m_%$o: s_%.c $(before-compile); $$(compile-command.c)
524 endef
525 object-suffixes-left := $(all-object-suffixes)
526 include $(o-iterator)
528 # Likewise, for those generated files shared with libc.
529 define o-iterator-doit
530 $(objpfx)m_%$o: $(objpfx)s_%.c $(before-compile); $$(compile-command.c)
531 endef
532 object-suffixes-left := $(all-object-suffixes)
533 include $(o-iterator)
535 # This file defines the default _LIB_VERSION variable that controls
536 # the error return conventions for the math functions.
537 CPPFLAGS-s_lib_version.c := -D_POSIX_MODE
539 # We don't want the fdlibm code to use the inline math functions,
540 # only the fdlibm code.
541 math-CPPFLAGS += -D__NO_MATH_INLINES -D__LIBC_INTERNAL_MATH_INLINES
543 ifneq ($(long-double-fcts),yes)
544 # The `double' and `long double' types are the same on this machine.
545 # We won't compile the `long double' code at all. Tell the `double' code
546 # to define aliases for the `FUNCl' names. To avoid type conflicts in
547 # defining those aliases, tell <math.h> to declare the `FUNCl' names with
548 # `double' instead of `long double'.
549 math-CPPFLAGS += -DNO_LONG_DOUBLE -D_Mlong_double_=double
550 endif
552 # These files quiet sNaNs in a way that is optimized away without
553 # -fsignaling-nans.
554 CFLAGS-s_modf.c += -fsignaling-nans
555 CFLAGS-s_modff.c += -fsignaling-nans
556 CFLAGS-s_modfl.c += -fsignaling-nans
557 CFLAGS-s_modff128.c += -fsignaling-nans
559 # The -lieee library is actually an object file.
560 # The module just defines the _LIB_VERSION_ variable.
561 # It's not a library to make sure it is linked in instead of s_lib_version.o.
562 $(objpfx)libieee.a: $(objpfx)ieee-math.o
563 rm -f $@
564 $(patsubst %/,cd % &&,$(objpfx)) \
565 $(LN_S) $(<F) $(@F)
567 $(addprefix $(objpfx),\
568 $(filter-out $(tests-static) $(libm-tests-vector),\
569 $(tests))): $(libm)
570 $(addprefix $(objpfx),$(tests-static)): $(objpfx)libm.a
571 define o-iterator-doit
572 $(foreach f,$($(o)-funcs),\
573 $(objpfx)test-$(o)-$(f)): $(objpfx)test-$(o)-wrappers.o \
574 $(libm) $(libmvec)
575 endef
576 object-suffixes-left := $(libmvec-tests)
577 include $(o-iterator)
579 gmp-objs = $(patsubst %,$(common-objpfx)stdlib/%.o,\
580 add_n sub_n cmp addmul_1 mul_1 mul_n divmod_1 \
581 lshift rshift mp_clz_tab udiv_qrnnd inlines \
582 $(gmp-sysdep_routines))
583 $(objpfx)atest-exp: $(gmp-objs)
584 $(objpfx)atest-sincos: $(gmp-objs)
585 $(objpfx)atest-exp2: $(gmp-objs)
586 $(objpfx)test-fenv-tls: $(shared-thread-library)