mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-07 10:00:07 +00:00
bb2ff12abd
The libcrypt was maked to be phase out on 2.38, and a better project already exist that provide both compatibility and better API (libxcrypt). The sparc optimizations add the burden to extra build-many-glibcs.py configurations. Checked on sparc64 and sparcv9. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
18 lines
570 B
Makefile
18 lines
570 B
Makefile
ifeq ($(subdir),string)
|
|
sysdep_routines += memcpy-ultra3 memcpy-niagara1 memcpy-niagara2 \
|
|
memset-niagara1 memcpy-niagara4 memset-niagara4 \
|
|
memcpy-ultra1 memset-ultra1 memcpy-memmove-niagara7 \
|
|
memmove-ultra1 memset-niagara7
|
|
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
|