mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-30 08:40:07 +00:00
9e2279a0e9
This patch refactors the sparc64 ifunc selector to a C implementation. Also, the generic symbol is moved to its own implementation file add_n-generic.S). Checked on sparc64-linux-gnu and sparcv9-linux-gnu. * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines): Add add_n-generic. * sysdeps/sparc/sparc64/multiarch/add_n-generic.S: New file. * sysdeps/sparc/sparc64/multiarch/add_n.c: Likewise. * sysdeps/sparc/sparc64/multiarch/add_n.S: Remove file. Signed-off-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
25 lines
656 B
Makefile
25 lines
656 B
Makefile
ifeq ($(subdir),crypt)
|
|
libcrypt-sysdep_routines += md5-crop sha256-crop sha512-crop
|
|
endif
|
|
|
|
ifeq ($(subdir),locale)
|
|
localedef-aux += md5-crop
|
|
endif
|
|
|
|
ifeq ($(subdir),string)
|
|
sysdep_routines += memcpy-ultra3 memcpy-niagara1 memcpy-niagara2 \
|
|
memset-niagara1 memcpy-niagara4 memset-niagara4 \
|
|
memcpy-ultra1 memset-ultra1
|
|
endif
|
|
|
|
ifeq ($(subdir),stdlib)
|
|
sysdep_routines += mul_1-vis3 mul_1-generic addmul_1-vis3 addmul_1-generic \
|
|
submul_1-vis3 submul_1-generic add_n-vis3 add_n-generic \
|
|
sub_n-vis3 sub_n-generic
|
|
endif
|
|
|
|
ifeq ($(subdir),math)
|
|
gmp-sysdep_routines = mul_1-vis3 addmul_1-vis3 submul_1-vis3 add_n-vis3 \
|
|
sub_n-vis3
|
|
endif
|