mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-09 10:50:08 +00:00
f67d78192c
This commit moves one step towards the deprecation of wrappers that use _LIB_VERSION / matherr / __kernel_standard functionality, by adding the suffix '_compat' to their filenames and adjusting Makefiles and #includes accordingly. New template wrappers that do not use such functionality will be added by future patches and will be first used by the float128 wrappers.
16 lines
535 B
Makefile
16 lines
535 B
Makefile
ifeq ($(subdir),math)
|
|
ifeq ($(have-as-vis3),yes)
|
|
libm-sysdep_routines += m_copysignf-vis3 m_copysign-vis3 s_fabs-vis3 \
|
|
s_fabsf-vis3 s_llrintf-vis3 s_llrint-vis3 \
|
|
s_rintf-vis3 s_rint-vis3 \
|
|
w_sqrt_compat-vis3 w_sqrtf_compat-vis3 \
|
|
s_fminf-vis3 s_fmin-vis3 s_fmaxf-vis3 s_fmax-vis3 \
|
|
s_fmaf-vis3 s_fma-vis3 s_nearbyint-vis3 \
|
|
s_nearbyintf-vis3 s_fdimf-vis3 s_fdim-vis3
|
|
sysdep_routines += s_copysignf-vis3 s_copysign-vis3
|
|
|
|
CFLAGS-s_fdimf-vis3.c += -Wa,-Av9d -mvis3
|
|
CFLAGS-s_fdim-vis3.c += -Wa,-Av9d -mvis3
|
|
endif
|
|
endif
|