glibc/sysdeps/aarch64/multiarch/Makefile
Wilco Dijkstra e6f3fe362f aarch64: Use memcpy_simd as the default memcpy
Since __memcpy_simd is the fastest memcpy on almost all cores, replace
the generic memcpy with it.  If SVE is available, a SVE memcpy will be
used by default (including for Neoverse N2).
2022-10-26 14:16:50 +01:00

20 lines
337 B
Makefile

ifeq ($(subdir),string)
sysdep_routines += \
memchr_generic \
memchr_nosimd \
memcpy_a64fx \
memcpy_falkor \
memcpy_generic \
memcpy_sve \
memcpy_thunderx \
memcpy_thunderx2 \
memset_a64fx \
memset_emag \
memset_falkor \
memset_generic \
memset_kunpeng \
strlen_asimd \
strlen_mte \
# sysdep_routines
endif