891dedb935
The C library didn't export the 'index' symbol, but its C++ name-mangling instead, which broke the ABI and prevented some applications from loading properly. The main reason was that the implementation under bionic/index.cpp relied on the declaration to specify that the function has C linkage. However, the declaration for index() was removed from both <string.h> and <strings.h> in a recent patch, which made the compiler think it was ok to compile the function with C++ linkage instead! This patch does the following: - Move index() definition to bionic/ndk_cruft.cpp and ensure it uses C linkage. Note that this removes index() from the 64-bit library entirely, this is intentional and will break source compatibility. Simply replacing an index() call with the equivalent strchr() should be enough to fix this in third-party code. - Remove bionic/index.cpp from the tree and build files. - Remove x86 assembly implementation from arch-x86/ to avoid conflict with the one in ndk_cruft.cpp BUG=15606653 Change-Id: I816b589f69c8f8a6511f6be6195d20cf1c4e8123
84 lines
2.6 KiB
Makefile
84 lines
2.6 KiB
Makefile
# mips specific configs
|
|
|
|
# These are shared by all the 32-bit targets, but not the 64-bit ones.
|
|
libc_common_src_files_mips := \
|
|
bionic/legacy_32_bit_support.cpp \
|
|
bionic/ndk_cruft.cpp \
|
|
bionic/time64.c \
|
|
upstream-openbsd/lib/libc/stdio/putw.c \
|
|
|
|
# These are shared by all the 32-bit targets, but not the 64-bit ones.
|
|
libc_bionic_src_files_mips += \
|
|
bionic/mmap.cpp
|
|
|
|
libc_common_src_files_mips += \
|
|
bionic/memchr.c \
|
|
bionic/memcmp.c \
|
|
bionic/memmove.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-freebsd/lib/libc/string/wmemmove.c \
|
|
upstream-openbsd/lib/libc/string/bcopy.c \
|
|
upstream-openbsd/lib/libc/string/stpcpy.c \
|
|
upstream-openbsd/lib/libc/string/stpncpy.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/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_mips += \
|
|
bionic/__memcpy_chk.cpp \
|
|
bionic/__memset_chk.cpp \
|
|
bionic/__strcpy_chk.cpp \
|
|
bionic/__strcat_chk.cpp \
|
|
|
|
|
|
ifneq ($(ARCH_MIPS_HAS_FPU),true)
|
|
libc_common_cflags_mips := \
|
|
-DSOFTFLOAT
|
|
endif
|
|
|
|
##########################################
|
|
### CPU specific source files
|
|
libc_bionic_src_files_mips += \
|
|
arch-mips/bionic/__bionic_clone.S \
|
|
arch-mips/bionic/bzero.S \
|
|
arch-mips/bionic/cacheflush.cpp \
|
|
arch-mips/bionic/_exit_with_stack_teardown.S \
|
|
arch-mips/bionic/__get_sp.S \
|
|
arch-mips/bionic/_setjmp.S \
|
|
arch-mips/bionic/setjmp.S \
|
|
arch-mips/bionic/sigsetjmp.S \
|
|
arch-mips/bionic/syscall.S \
|
|
arch-mips/string/memcpy.S \
|
|
arch-mips/string/memset.S \
|
|
arch-mips/string/mips_strlen.c \
|
|
|
|
|
|
libc_crt_target_cflags_mips := \
|
|
$($(my_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS) \
|
|
-I$(LOCAL_PATH)/arch-mips/include
|
|
|
|
libc_crt_target_crtbegin_file_mips := \
|
|
$(LOCAL_PATH)/arch-mips/bionic/crtbegin.c
|
|
|
|
libc_crt_target_crtbegin_so_file_mips := \
|
|
$(LOCAL_PATH)/arch-common/bionic/crtbegin_so.c
|
|
|
|
libc_crt_target_so_cflags_mips := \
|
|
-fPIC
|