blob: 1af4a651bc4f8fd814b393021cec2552f491baec [file] [log] [blame]
Ying Wangf25d6772014-01-23 15:17:50 -08001# mips specific configs
2
3# These are shared by all the 32-bit targets, but not the 64-bit ones.
4libc_common_src_files_mips := \
5 bionic/legacy_32_bit_support.cpp \
6 bionic/ndk_cruft.cpp \
7
8# These are shared by all the 32-bit targets, but not the 64-bit ones.
9libc_bionic_src_files_mips += \
10 bionic/mmap.cpp
11
12libc_common_src_files_mips += \
Elliott Hughes53e43292014-02-24 18:00:43 -080013 bionic/index.cpp \
Ying Wangf25d6772014-01-23 15:17:50 -080014 bionic/memchr.c \
15 bionic/memcmp.c \
16 bionic/memmove.c \
17 bionic/memrchr.c \
18 bionic/strchr.cpp \
19 bionic/strnlen.c \
Elliott Hughes53e43292014-02-24 18:00:43 -080020 bionic/strrchr.cpp \
Ying Wangf25d6772014-01-23 15:17:50 -080021 upstream-freebsd/lib/libc/string/wcscat.c \
22 upstream-freebsd/lib/libc/string/wcschr.c \
23 upstream-freebsd/lib/libc/string/wcscmp.c \
24 upstream-freebsd/lib/libc/string/wcscpy.c \
25 upstream-freebsd/lib/libc/string/wcslen.c \
26 upstream-freebsd/lib/libc/string/wcsrchr.c \
27 upstream-freebsd/lib/libc/string/wmemcmp.c \
Elliott Hughes53e43292014-02-24 18:00:43 -080028 upstream-openbsd/lib/libc/string/bcopy.c \
29 upstream-openbsd/lib/libc/string/strcat.c \
30 upstream-openbsd/lib/libc/string/strcmp.c \
31 upstream-openbsd/lib/libc/string/strcpy.c \
32 upstream-openbsd/lib/libc/string/strlcat.c \
33 upstream-openbsd/lib/libc/string/strlcpy.c \
34 upstream-openbsd/lib/libc/string/strncat.c \
35 upstream-openbsd/lib/libc/string/strncmp.c \
36 upstream-openbsd/lib/libc/string/strncpy.c \
Ying Wangf25d6772014-01-23 15:17:50 -080037
38# Fortify implementations of libc functions.
39libc_common_src_files_mips += \
40 bionic/__memcpy_chk.cpp \
41 bionic/__memset_chk.cpp \
42 bionic/__strcpy_chk.cpp \
43 bionic/__strcat_chk.cpp \
44
45
Ying Wangf25d6772014-01-23 15:17:50 -080046ifneq ($(ARCH_MIPS_HAS_FPU),true)
47libc_common_cflags_mips := \
48 -DSOFTFLOAT
49endif
Ying Wangf25d6772014-01-23 15:17:50 -080050
51##########################################
52### CPU specific source files
53libc_bionic_src_files_mips += \
Elliott Hughes36d61882013-11-19 13:31:58 -080054 arch-mips/bionic/__bionic_clone.S \
Christopher Ferris7c83a1e2013-02-26 01:30:00 -080055 arch-mips/bionic/bzero.S \
Elliott Hughes14b467e2013-10-09 16:40:33 -070056 arch-mips/bionic/cacheflush.cpp \
Elliott Hughesbf425682013-10-24 16:29:40 -070057 arch-mips/bionic/_exit_with_stack_teardown.S \
58 arch-mips/bionic/futex_mips.S \
59 arch-mips/bionic/__get_sp.S \
Christopher Ferris7c83a1e2013-02-26 01:30:00 -080060 arch-mips/bionic/memcmp16.S \
Elliott Hughesbf425682013-10-24 16:29:40 -070061 arch-mips/bionic/_setjmp.S \
Christopher Ferris7c83a1e2013-02-26 01:30:00 -080062 arch-mips/bionic/setjmp.S \
Elliott Hughesbf425682013-10-24 16:29:40 -070063 arch-mips/bionic/__set_tls.c \
Christopher Ferris7c83a1e2013-02-26 01:30:00 -080064 arch-mips/bionic/sigsetjmp.S \
Chris Dearmaneffaa782013-11-13 14:15:31 -080065 arch-mips/bionic/syscall.S \
Christopher Ferris7c83a1e2013-02-26 01:30:00 -080066 arch-mips/bionic/vfork.S \
Christopher Ferris7c83a1e2013-02-26 01:30:00 -080067 arch-mips/string/memcpy.S \
Elliott Hughesbf425682013-10-24 16:29:40 -070068 arch-mips/string/memset.S \
Christopher Ferris7c83a1e2013-02-26 01:30:00 -080069 arch-mips/string/mips_strlen.c \
Ying Wangf25d6772014-01-23 15:17:50 -080070
Ying Wangf25d6772014-01-23 15:17:50 -080071
Ying Wangf25d6772014-01-23 15:17:50 -080072libc_crt_target_cflags_mips := \
73 $($(my_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS) \
74 -I$(LOCAL_PATH)/arch-mips/include
75
76libc_crt_target_crtbegin_file_mips := \
77 $(LOCAL_PATH)/arch-mips/bionic/crtbegin.c
78
79libc_crt_target_crtbegin_so_file_mips := \
80 $(LOCAL_PATH)/arch-common/bionic/crtbegin_so.c
81
82libc_crt_target_so_cflags_mips := \
83 -fPIC