50282f72bb
lconv is taken from ndk/sources/android/support/include/locale.h and matches bsd/glibc upstream. Keep old declaration for 32-bits for compatibility. localeconv.c and deps are taken from openbsd upstream. Changed strtod.c accordingly. Change-Id: I9fcc4d15f5674d192950d80edf26f36006cd31b4 Signed-off-by: Pavel Chupin <pavel.v.chupin@intel.com>
75 lines
2.5 KiB
Makefile
75 lines
2.5 KiB
Makefile
# x86_64 specific configs
|
|
|
|
libc_common_src_files_x86_64 := \
|
|
bionic/index.cpp \
|
|
bionic/memchr.c \
|
|
bionic/memcmp.c \
|
|
bionic/memcpy.cpp \
|
|
bionic/memmove.c \
|
|
bionic/memrchr.c \
|
|
bionic/memset.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/locale/_def_numeric.c \
|
|
upstream-openbsd/lib/libc/locale/_def_messages.c \
|
|
upstream-openbsd/lib/libc/locale/_def_monetary.c \
|
|
upstream-openbsd/lib/libc/locale/_def_time.c \
|
|
upstream-openbsd/lib/libc/locale/localeconv.c \
|
|
upstream-openbsd/lib/libc/string/bcopy.c \
|
|
upstream-openbsd/lib/libc/string/strcat.c \
|
|
upstream-openbsd/lib/libc/string/strcmp.c \
|
|
upstream-openbsd/lib/libc/string/strcpy.c \
|
|
upstream-openbsd/lib/libc/string/strlcat.c \
|
|
upstream-openbsd/lib/libc/string/strlcpy.c \
|
|
upstream-openbsd/lib/libc/string/strlen.c \
|
|
upstream-openbsd/lib/libc/string/strncat.c \
|
|
upstream-openbsd/lib/libc/string/strncmp.c \
|
|
upstream-openbsd/lib/libc/string/strncpy.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/futex_x86_64.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_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
|