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.
24 # Installed header files.
25 headers
:= math.h bits
/mathcalls.h bits
/mathinline.h \
26 fpu_control.h complex.h bits
/cmathcalls.h fenv.h \
27 bits
/fenv.h bits
/fenvinline.h bits
/mathdef.h tgmath.h \
28 bits
/math-finite.h bits
/math-vector.h \
29 bits
/libm-simd-decl-stubs.h bits
/iscanonical.h \
30 bits
/flt-eval-method.h bits
/fp-fast.h bits
/fp-logb.h \
31 bits
/long-double.h bits
/mathcalls-helper-functions.h \
32 bits
/floatn.h bits
/floatn-common.h
35 aux
:= setfpucw fpu_control
37 # Build the -lm library.
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 \
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 e_exp2F
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 \
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 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
)
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 # Like types, but includes types whose functions alias those for
107 test-types-basic
= ldouble double float
109 # long double support
110 type-ldouble-suffix
:= l
111 type-ldouble-routines
:= t_sincosl k_sincosl s_iscanonicall
112 type-ldouble-yes
:= ldouble
115 type-double-suffix
:=
116 type-double-routines
:= branred doasin dosincos halfulp mpa mpatan2 \
117 mpatan mpexp mplog mpsqrt mptan sincos32 slowexp \
118 slowpow sincostab k_rem_pio2
121 type-float-suffix
:= f
122 type-float-routines
:= k_rem_pio2f math_errf e_exp2f_data e_logf_data \
123 e_log2f_data e_powf_log2_data
126 type-float128-suffix
:= f128
127 type-float128-routines
:= t_sincosf128 k_sincosf128
128 type-float128-yes
:= float128
129 types
= $(types-basic
) $(type-float128-
$(float128-fcts
))
130 test-types
= $(test-types-basic
) $(type-float128-
$(float128-fcts
)) \
131 $(type-float128-
$(float128-alias-fcts
))
133 # For each of the basic types (float, double, long double), replace the
134 # occurrences of 'F' in arg 1 with the appropriate suffix for the type.
135 type-basic-foreach
= $(foreach t
, $(types-basic
), \
136 $(subst F
,$(type-
$(t
)-suffix),$(1)))
138 # Apply suffix to each type in arg 1
139 type-foreach
= $(foreach t
,$(types
),$(subst F
,$(type-
$(t
)-suffix),$(1)))
141 libm-routines
= $(strip $(libm-support
) \
142 $(call type-basic-foreach
, \
143 $(libm-compat-calls
)) \
144 $(call type-foreach
, $(libm-calls
)) \
145 $(foreach t
, $(types
), $(type-
$(t
)-routines
))) \
147 # These functions are in libc instead of libm because __printf_fp
148 # calls them, so any program using printf will need them linked in,
149 # and we don't want to have to link every program with -lm.
150 # In libm-calls (above), list m_foo in place of s_foo for any
151 # routine that should be compiled separately for its libc and libm versions.
152 calls
= s_isinfF s_isnanF s_finiteF s_copysignF s_modfF s_scalbnF s_frexpF \
153 s_signbitF
$(gen-calls
)
155 generated
+= $(foreach s
,.c .S
,$(call type-foreach
, $(calls
:s_
%=m_
%$(s
))))
156 routines
= $(call type-foreach
, $(calls
))
158 ifeq ($(build-mathvec
),yes
)
159 # We need to install libm.so and libm.a as linker scripts
160 # for transparent use of vector math library.
161 install-lib-ldscripts
:= libm.so libm.a
162 install-others
= $(inst_libdir
)/libm.so
$(inst_libdir
)/libm.a
163 $(inst_libdir
)/libm.so
: $(common-objpfx
)format.lds \
167 (echo
'/* GNU ld script'; echo
'*/';\
169 echo
'GROUP ( $(slibdir)/libm.so$(libm.so-version) ' \
170 'AS_NEEDED ( $(libdir)/libmvec_nonshared.a $(slibdir)/libmvec.so$(libmvec.so-version) ) )' \
174 $(inst_libdir
)/libm-
$(version
).a
: $(objpfx
)libm.a \
178 $(inst_libdir
)/libm.a
: $(common-objpfx
)format.lds \
179 $(inst_libdir
)/libm-
$(version
).a \
180 $(objpfx
)..
/mathvec
/libmvec.a \
182 (echo
'/* GNU ld script'; echo
'*/';\
184 echo
'GROUP ( $(libdir)/libm-$(version).a $(libdir)/libmvec.a )' \
189 # Rules for the test suite.
190 tests
= test-matherr-3 test-fenv basic-test \
191 test-misc test-fpucw test-fpucw-ieee tst-definitions test-tgmath \
192 test-tgmath-ret bug-nextafter bug-nexttoward bug-tgmath1 \
193 test-tgmath-int test-tgmath2 test-powl tst-CMPLX tst-CMPLX2 test-snan \
194 test-fenv-tls test-fenv-preserve test-fenv-return test-fenvinline \
195 test-nearbyint-except test-fenv-clear test-signgam-finite \
196 test-signgam-finite-c99 test-signgam-finite-c11 \
197 test-nearbyint-except-2 test-signgam-uchar test-signgam-uchar-init \
198 test-signgam-uint test-signgam-uint-init test-signgam-ullong \
199 test-signgam-ullong-init test-nan-overflow test-nan-payload \
200 test-fexcept test-fexcept-traps test-fesetexcept \
201 test-fesetexcept-traps test-fetestexceptflag test-femode \
202 test-femode-traps test-iszero-excess-precision \
203 test-iseqsig-excess-precision test-flt-eval-method \
204 test-fp-ilogb-constants test-fp-llogb-constants \
205 test-fe-snans-always-signal test-finite-macros
$(tests-static
)
206 tests-static
= test-fpucw-static test-fpucw-ieee-static \
207 test-signgam-uchar-static test-signgam-uchar-init-static \
208 test-signgam-uint-static test-signgam-uint-init-static \
209 test-signgam-ullong-static test-signgam-ullong-init-static
210 tests-internal
= test-matherr test-matherr-2
212 # These tests use internal (unexported) GMP functions and are linked
213 # statically to obtain access to these functions.
214 tests-static
+= atest-exp atest-sincos atest-exp2
217 tests
+= test-math-isinff test-math-iszero test-math-issignaling \
218 test-math-iscanonical test-math-cxx11
222 libm-vec-tests
= $(addprefix test-
,$(libmvec-tests
))
223 libm-test-support
= $(foreach t
,$(test-types
),libm-test-support-
$(t
))
224 test-extras
+= $(libm-test-support
)
225 extra-test-objs
+= $(addsuffix .o
, $(libm-test-support
))
226 libm-vec-test-wrappers
= $(addsuffix -wrappers
, $(libm-vec-tests
))
227 test-extras
+= $(libm-vec-test-wrappers
)
228 extra-test-objs
+= $(addsuffix .o
, $(libm-vec-test-wrappers
))
230 ulps-file
= $(firstword $(wildcard $(sysdirs
:%=%/libm-test-ulps
)))
232 $(objpfx
)libm-test-ulps.h
: $(ulps-file
) gen-libm-test.pl
233 $(make-target-directory
)
234 $(PERL
) gen-libm-test.pl
-u
$< -H
$@
236 libm-test-funcs-auto
= acos acosh asin asinh atan atan2 atanh cabs cacos \
237 cacosh carg casin casinh catan catanh cbrt ccos ccosh \
238 cexp clog clog10 cos cosh cpow csin csinh csqrt ctan \
239 ctanh erf erfc exp exp10 exp2 expm1 fma hypot j0 j1 jn \
240 lgamma log log10 log1p log2 pow sin sincos sinh sqrt \
241 tan tanh tgamma y0 y1 yn
242 libm-test-funcs-noauto
= canonicalize ceil cimag conj copysign cproj creal \
243 fabs fdim floor fmax fmaxmag fmin fminmag fmod \
244 fpclassify frexp fromfp fromfpx getpayload ilogb \
245 iscanonical iseqsig isfinite isgreater \
246 isgreaterequal isinf isless islessequal \
247 islessgreater isnan isnormal issignaling issubnormal \
248 isunordered iszero llogb llrint llround logb lrint \
249 lround modf nearbyint nextafter nextdown nexttoward \
250 nextup remainder remquo rint round roundeven scalb \
251 scalbln scalbn setpayload setpayloadsig signbit \
252 significand totalorder totalordermag trunc ufromfp \
254 libm-test-funcs-all
= $(libm-test-funcs-auto
) $(libm-test-funcs-noauto
)
255 libm-test-c-auto
= $(foreach f
,$(libm-test-funcs-auto
),libm-test-
$(f
).c
)
256 libm-test-c-noauto
= $(foreach f
,$(libm-test-funcs-noauto
),libm-test-
$(f
).c
)
257 generated
+= libm-test-ulps.h
$(libm-test-c-auto
) $(libm-test-c-noauto
)
259 libm-tests-base-normal
= $(foreach t
,$(test-types
),test-
$(t
))
260 libm-tests-base-finite
= $(foreach t
,$(test-types
),test-
$(t
)-finite
)
261 libm-tests-base-inline
= $(foreach t
,$(test-types
),test-i
$(t
))
262 libm-tests-base
= $(libm-tests-base-normal
) $(libm-tests-base-finite
) \
263 $(libm-tests-base-inline
) $(libm-vec-tests
)
264 libm-tests-normal
= $(foreach t
,$(libm-tests-base-normal
),\
265 $(foreach f
,$(libm-test-funcs-all
),\
267 libm-tests-finite
= $(foreach t
,$(libm-tests-base-finite
),\
268 $(foreach f
,$(libm-test-funcs-all
),\
270 libm-tests-inline
= $(foreach t
,$(libm-tests-base-inline
),\
271 $(foreach f
,$(libm-test-funcs-all
),\
273 libm-tests-vector
= $(foreach t
,$(libmvec-tests
),\
274 $(foreach f
,$($(t
)-funcs
),test-
$(t
)-$(f
)))
275 libm-tests
= $(libm-tests-normal
) $(libm-tests-finite
) $(libm-tests-inline
) \
277 libm-tests-for-type
= $(foreach f
,$(libm-test-funcs-all
),\
278 test-
$(1)-$(f
) test-
$(1)-finite-
$(f
) \
280 $(filter test-
$(1)-%,$(libm-tests-vector
))
282 libm-tests.o
= $(addsuffix .o
,$(libm-tests
))
284 tests
+= $(libm-tests
)
285 generated
+= $(addsuffix .c
,$(libm-tests
)) \
286 $(foreach t
,$(test-types
),libm-test-support-
$(t
).c
)
288 libm-test-c-auto-obj
= $(addprefix $(objpfx
),$(libm-test-c-auto
))
289 libm-test-c-noauto-obj
= $(addprefix $(objpfx
),$(libm-test-c-noauto
))
291 $(libm-test-c-noauto-obj
): $(objpfx
)libm-test
%.c
: libm-test
%.inc \
293 $(make-target-directory
)
294 $(PERL
) gen-libm-test.pl
-c
$< -a
/dev
/null
-C
$@
296 $(libm-test-c-auto-obj
): $(objpfx
)libm-test
%.c
: libm-test
%.inc \
299 $(make-target-directory
)
300 $(PERL
) gen-libm-test.pl
-c
$< -a auto-libm-test-out
$* -C
$@
302 libm-test-incs
= $(foreach f
,$(libm-test-funcs-all
),libm-test-
$(f
).inc
)
306 tests
+= test-tgmath3
307 generated
+= test-tgmath3.c
308 CFLAGS-test-tgmath3.c
= -fno-builtin
310 $(objpfx
)test-tgmath3.c
: gen-tgmath-tests.py
314 libm-test-fast-math-cflags
= -fno-builtin
-D__FAST_MATH__
-DTEST_FAST_MATH
315 libm-test-vec-cflags
= $(libm-test-fast-math-cflags
) -fno-inline \
316 -ffloat-store
-D_OPENMP
=201307 -Wno-unknown-pragmas
318 CFLAGS-test-double-vlen4-wrappers.c
= $(double-vlen4-arch-ext-cflags
)
320 CFLAGS-test-double-vlen8-wrappers.c
= $(double-vlen8-arch-ext-cflags
)
322 CFLAGS-test-float-vlen8-wrappers.c
= $(float-vlen8-arch-ext-cflags
)
324 CFLAGS-test-float-vlen16-wrappers.c
= $(float-vlen16-arch-ext-cflags
)
326 # The no-inline tests use -fsignaling-nans, and thereby use the
327 # versions of classification macros that support sNaNs. The inline
328 # function tests use the versions of classification macros that may
329 # raise spurious exceptions for sNaNs, but also do not test for
330 # exceptions. Thus both versions of the classification macros are
332 libm-test-no-inline-cflags
= -fno-inline
-ffloat-store
-fno-builtin \
334 libm-test-finite-cflags
= $(libm-test-no-inline-cflags
) \
335 -U__FINITE_MATH_ONLY__
-D__FINITE_MATH_ONLY__
=1
336 libm-test-inline-cflags
= $(libm-test-fast-math-cflags
)
337 CFLAGS-test-tgmath.c
= -fno-builtin
338 # The following testcase uses very long lines (>3 million), so it may take a
339 # while to compile it. See: http://llvm.org/bugs/show_bug.cgi?id=14106 and
340 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54402
341 CFLAGS-test-tgmath2.c
= -fno-builtin
342 CFLAGS-test-tgmath-ret.c
= -fno-builtin
343 CFLAGS-test-powl.c
= -fno-builtin
345 CFLAGS-test-snan.c
= -fsignaling-nans
347 CFLAGS-test-signgam-finite.c
= -ffinite-math-only
348 CFLAGS-test-signgam-finite-c99.c
= -ffinite-math-only
-std
=c99
349 CFLAGS-test-signgam-finite-c11.c
= -ffinite-math-only
-std
=c11
350 CFLAGS-test-signgam-uchar.c
= -std
=c99
351 CFLAGS-test-signgam-uchar-init.c
= -std
=c99
352 CFLAGS-test-signgam-uchar-static.c
= -std
=c99
353 CFLAGS-test-signgam-uchar-init-static.c
= -std
=c99
354 CFLAGS-test-signgam-uint.c
= -std
=c99
355 CFLAGS-test-signgam-uint-init.c
= -std
=c99
356 CFLAGS-test-signgam-uint-static.c
= -std
=c99
357 CFLAGS-test-signgam-uint-init-static.c
= -std
=c99
358 CFLAGS-test-signgam-ullong.c
= -std
=c99
359 CFLAGS-test-signgam-ullong-init.c
= -std
=c99
360 CFLAGS-test-signgam-ullong-static.c
= -std
=c99
361 CFLAGS-test-signgam-ullong-init-static.c
= -std
=c99
363 CFLAGS-test-math-cxx11.
cc = -std
=c
++11
365 CFLAGS-test-math-isinff.
cc = -std
=gnu
++11
366 CFLAGS-test-math-iszero.
cc = -std
=gnu
++11
367 CFLAGS-test-math-issignaling.
cc = -std
=gnu
++11
368 CFLAGS-test-math-iscanonical.
cc = -std
=gnu
++11
370 CFLAGS-test-iszero-excess-precision.c
= -fexcess-precision
=standard
371 CFLAGS-test-iseqsig-excess-precision.c
= -fexcess-precision
=standard
372 CFLAGS-test-flt-eval-method.c
= -fexcess-precision
=standard
374 CFLAGS-test-fe-snans-always-signal.c
= -fsignaling-nans
376 CFLAGS-test-finite-macros.c
= -ffinite-math-only
380 gen-all-calls
= $(gen-libm-calls
) $(gen-calls
)
382 generated
+= $(addsuffix .c
,$(call type-foreach
,$(gen-all-calls
))) \
383 gen-libm-templates.stmp
385 # Create wrappers in the math build directory.
386 $(objpfx
)gen-libm-templates.stmp
: Makefile
387 $(make-target-directory
)
388 for gcall in
$(gen-all-calls
); do \
389 func
=$${gcall
%F
*}$${gcall
#*F}; \
390 for type in
$(foreach t
,$(types
),$(t
)__
$(type-
$(t
)-suffix)); do \
393 file
=$(objpfx
)$${gcall
%F
*}$${suff}$${gcall
#*F}.c; \
395 echo
"#include <math-type-macros-$${type}.h>"; \
396 echo
"#include <$${func}_template.c>"; \
402 # Add dependency to ensure the generator runs prior.
403 $(foreach t
, $(call type-foreach
, $(gen-all-calls
)), \
404 $(objpfx
)$(t
).c
): $(objpfx
)gen-libm-templates.stmp
407 # This must come after the inclusion of sysdeps Makefiles via Rules.
409 $(foreach t
,$(libm-tests-normal
),$(objpfx
)$(t
).c
): $(objpfx
)test-
%.c
:
411 type
=$${type_func
%%-*}; \
412 func
=$${type_func
#*-}; \
414 echo
"#include <test-$$type.h>"; \
415 echo
"#include <test-math-no-finite.h>"; \
416 echo
"#include <test-math-no-inline.h>"; \
417 echo
"#include <test-math-errno.h>"; \
418 echo
"#include <test-math-scalar.h>"; \
419 echo
"#include <libm-test-$$func.c>"; \
422 $(foreach t
,$(libm-tests-finite
),$(objpfx
)$(t
).c
): $(objpfx
)test-
%.c
:
424 type
=$${type_func
%%-*}; \
425 func
=$${type_func
#*-finite-}; \
427 echo
"#include <test-$$type.h>"; \
428 echo
"#include <test-math-finite.h>"; \
429 echo
"#include <test-math-no-inline.h>"; \
430 echo
"#include <test-math-scalar.h>"; \
431 echo
"#include <libm-test-$$func.c>"; \
434 $(foreach t
,$(libm-tests-inline
),$(objpfx
)$(t
).c
): $(objpfx
)test-i
%.c
:
436 type
=$${type_func
%%-*}; \
437 func
=$${type_func
#*-}; \
439 echo
"#include <test-$$type.h>"; \
440 echo
"#include <test-math-inline.h>"; \
441 echo
"#include <test-math-scalar.h>"; \
442 echo
"#include <libm-test-$$func.c>"; \
445 $(foreach t
,$(libm-tests-vector
),$(objpfx
)$(t
).c
): $(objpfx
)test-
%.c
:
447 type
=$${type_func
%-*}; \
448 func
=$${type_func
##*-}; \
449 func_args
=$$(grep ALL_RM_TEST libm-test-
$$func.inc \
450 | sed
's/.*RUN_TEST_LOOP_//;s/_.*//'); \
452 echo
"#include <test-$$type.h>"; \
453 echo
"WRAPPER_DECL_$$func_args (WRAPPER_NAME (FUNC ($$func)))"; \
454 echo
"#include <libm-test-$$func.c>"; \
457 $(foreach t
,$(test-types
),\
458 $(objpfx
)libm-test-support-
$(t
).c
): $(objpfx
)libm-test-support-
%.c
:
460 echo
"#include <test-$*.h>"; \
461 echo
"#include <libm-test-support.c>"; \
464 $(addprefix $(objpfx
), $(libm-tests.o
)): $(objpfx
)libm-test-ulps.h
466 define o-iterator-doit
467 $(foreach f
,$(libm-test-funcs-all
),\
468 $(objpfx
)$(o
)-$(f
).o
): $(objpfx
)$(o
)%.o
: $(objpfx
)libm-test
%.c
470 object-suffixes-left
:= $(libm-tests-base
)
471 include $(o-iterator
)
473 define o-iterator-doit
474 $(foreach f
,$(libm-test-funcs-all
),\
475 $(objpfx
)$(o
)-$(f
).o
): CFLAGS
+= $(libm-test-no-inline-cflags
)
477 object-suffixes-left
:= $(libm-tests-base-normal
)
478 include $(o-iterator
)
480 define o-iterator-doit
481 $(foreach f
,$(libm-test-funcs-all
),\
482 $(objpfx
)$(o
)-$(f
).o
): CFLAGS
+= $(libm-test-finite-cflags
)
484 object-suffixes-left
:= $(libm-tests-base-finite
)
485 include $(o-iterator
)
487 define o-iterator-doit
488 $(foreach f
,$(libm-test-funcs-all
),\
489 $(objpfx
)$(o
)-$(f
).o
): CFLAGS
+= $(libm-test-inline-cflags
)
491 object-suffixes-left
:= $(libm-tests-base-inline
)
492 include $(o-iterator
)
494 define o-iterator-doit
495 $(foreach f
,$($(o
)-funcs
),\
496 $(objpfx
)test-
$(o
)-$(f
).o
): CFLAGS
+= $(libm-test-vec-cflags
)
498 object-suffixes-left
:= $(libmvec-tests
)
499 include $(o-iterator
)
501 define o-iterator-doit
502 $(addprefix $(objpfx
),\
503 $(call libm-tests-for-type
,$(o
))): $(objpfx
)libm-test-support-
$(o
).o
505 object-suffixes-left
:= $(test-types
)
506 include $(o-iterator
)
508 define o-iterator-doit
509 $(objpfx
)libm-test-support-
$(o
).o
: CFLAGS
+= $(libm-test-no-inline-cflags
)
511 object-suffixes-left
:= $(test-types
)
512 include $(o-iterator
)
514 # Run the math programs to automatically generate ULPs files.
517 run-regen-ulps
= $(test-wrapper-env
) \
519 $($*-ENV
) $(rtld-prefix
) $${run}
521 regen-ulps
: $(addprefix $(objpfx
),$(libm-tests
))
522 rm -f
$(objpfx
)ULPs
; rm -f
$(objpfx
)NewUlps
; \
523 cp
$(ulps-file
) $(objpfx
)libm-test-ulps
; \
525 echo
"Regenerating ULPs for $${run}"; \
526 $(run-regen-ulps
) -u
-o
$(objpfx
); \
527 cat
$(objpfx
)ULPs
>> $(objpfx
)libm-test-ulps
; \
530 $(PERL
) gen-libm-test.pl
-n
$(objpfx
)NewUlps \
531 -u
$(objpfx
)libm-test-ulps
; \
532 echo
"Automatic regeneration of ULPs complete."; \
533 echo
"Difference between the current baseline and the new baseline is:";\
534 diff
-urN
$(ulps-file
) $(objpfx
)NewUlps
; \
535 echo
"Copy $(objpfx)NewUlps to $(ulps-file) (relative to source)."
538 @echo
"Automatic regeneration of ULPs requires perl."; \
542 # The generated sysd-rules file defines rules like this for sources
543 # coming from sysdeps/ directories. These rules find the generic sources.
544 define o-iterator-doit
545 $(objpfx
)m_
%$o: s_
%.c
$(before-compile
); $$(compile-command.c
)
547 object-suffixes-left
:= $(all-object-suffixes
)
548 include $(o-iterator
)
550 # Likewise, for those generated files shared with libc.
551 define o-iterator-doit
552 $(objpfx
)m_
%$o: $(objpfx
)s_
%.c
$(before-compile
); $$(compile-command.c
)
554 object-suffixes-left
:= $(all-object-suffixes
)
555 include $(o-iterator
)
557 # We don't want the fdlibm code to use the inline math functions,
558 # only the fdlibm code.
559 math-CPPFLAGS
+= -D__NO_MATH_INLINES
-D__LIBC_INTERNAL_MATH_INLINES
561 ifneq ($(long-double-fcts
),yes
)
562 # The `double' and `long double' types are the same on this machine.
563 # We won't compile the `long double' code at all. Tell the `double' code
564 # to define aliases for the `FUNCl' names. To avoid type conflicts in
565 # defining those aliases, tell <math.h> to declare the `FUNCl' names with
566 # `double' instead of `long double'.
567 math-CPPFLAGS
+= -DNO_LONG_DOUBLE
-D_Mlong_double_
=double
570 # These files quiet sNaNs in a way that is optimized away without
572 CFLAGS-s_modf.c
+= -fsignaling-nans
573 CFLAGS-s_modff.c
+= -fsignaling-nans
574 CFLAGS-s_modfl.c
+= -fsignaling-nans
575 CFLAGS-s_modff128.c
+= -fsignaling-nans
577 $(addprefix $(objpfx
),\
578 $(filter-out $(tests-static
) $(libm-tests-vector
),\
579 $(tests
) $(tests-internal
))): $(libm
)
580 $(addprefix $(objpfx
),$(tests-static
)): $(objpfx
)libm.a
581 define o-iterator-doit
582 $(foreach f
,$($(o
)-funcs
),\
583 $(objpfx
)test-
$(o
)-$(f
)): $(objpfx
)test-
$(o
)-wrappers.o \
586 object-suffixes-left
:= $(libmvec-tests
)
587 include $(o-iterator
)
589 $(objpfx
)test-fenv-tls
: $(shared-thread-library
)