fd0ce866ce
This reverts commit 8167dd7cb9
.
For some reason I thought the bcopy change was bzero. The bcopy code doesn't pass our tests, so reverting until I can figure out what's wrong.
Change-Id: Id89fe959ea5105cd58dff6bba8d91a30cc4bcb07
73 lines
2.4 KiB
Makefile
73 lines
2.4 KiB
Makefile
# x86_64 specific configs
|
|
|
|
libc_common_src_files_x86_64 := \
|
|
bionic/index.cpp \
|
|
bionic/memchr.c \
|
|
bionic/memrchr.c \
|
|
bionic/strchr.cpp \
|
|
bionic/strnlen.c \
|
|
bionic/strrchr.cpp \
|
|
upstream-freebsd/lib/libc/string/wcscat.c \
|
|
upstream-freebsd/lib/libc/string/wcschr.c \
|
|
upstream-freebsd/lib/libc/string/wcscmp.c \
|
|
upstream-freebsd/lib/libc/string/wcscpy.c \
|
|
upstream-freebsd/lib/libc/string/wcslen.c \
|
|
upstream-freebsd/lib/libc/string/wcsrchr.c \
|
|
upstream-freebsd/lib/libc/string/wmemcmp.c \
|
|
upstream-openbsd/lib/libc/string/strlcat.c \
|
|
upstream-openbsd/lib/libc/string/strlcpy.c \
|
|
|
|
# Fortify implementations of libc functions.
|
|
libc_common_src_files_x86_64 += \
|
|
bionic/__memcpy_chk.cpp \
|
|
bionic/__memset_chk.cpp \
|
|
bionic/__strcpy_chk.cpp \
|
|
bionic/__strcat_chk.cpp \
|
|
|
|
|
|
##########################################
|
|
### CPU specific source files
|
|
libc_bionic_src_files_x86_64 := \
|
|
arch-x86_64/bionic/__bionic_clone.S \
|
|
arch-x86_64/bionic/_exit_with_stack_teardown.S \
|
|
arch-x86_64/bionic/__get_sp.S \
|
|
arch-x86_64/bionic/__rt_sigreturn.S \
|
|
arch-x86_64/bionic/_setjmp.S \
|
|
arch-x86_64/bionic/setjmp.S \
|
|
arch-x86_64/bionic/__set_tls.c \
|
|
arch-x86_64/bionic/sigsetjmp.S \
|
|
arch-x86_64/bionic/syscall.S \
|
|
arch-x86_64/bionic/vfork.S \
|
|
bionic/__memcmp16.cpp \
|
|
|
|
libc_bionic_src_files_x86_64 += \
|
|
arch-x86_64/string/sse2-bcopy-slm.S \
|
|
arch-x86_64/string/sse2-bzero-slm.S \
|
|
arch-x86_64/string/sse2-memcpy-slm.S \
|
|
arch-x86_64/string/sse2-memmove-slm.S \
|
|
arch-x86_64/string/sse2-memset-slm.S \
|
|
arch-x86_64/string/sse2-stpcpy-slm.S \
|
|
arch-x86_64/string/sse2-stpncpy-slm.S \
|
|
arch-x86_64/string/sse2-strcat-slm.S \
|
|
arch-x86_64/string/sse2-strcpy-slm.S \
|
|
arch-x86_64/string/sse2-strlen-slm.S \
|
|
arch-x86_64/string/sse2-strncat-slm.S \
|
|
arch-x86_64/string/sse2-strncpy-slm.S \
|
|
arch-x86_64/string/sse4-memcmp-slm.S \
|
|
arch-x86_64/string/ssse3-strcmp-slm.S \
|
|
arch-x86_64/string/ssse3-strncmp-slm.S \
|
|
|
|
libc_crt_target_cflags_x86_64 += \
|
|
-m64 \
|
|
-I$(LOCAL_PATH)/arch-x86_64/include
|
|
|
|
libc_crt_target_ldflags_x86_64 := -melf_x86_64
|
|
|
|
libc_crt_target_crtbegin_file_x86_64 := \
|
|
$(LOCAL_PATH)/arch-common/bionic/crtbegin.c
|
|
|
|
libc_crt_target_crtbegin_so_file_x86_64 := \
|
|
$(LOCAL_PATH)/arch-common/bionic/crtbegin_so.c
|
|
|
|
libc_crt_target_so_cflags_x86_64 := \
|
|
-fPIC
|