blob: 8c5e68174685deed38db61a0d78cdfa991364c85 [file] [log] [blame]
Ying Wangf25d6772014-01-23 15:17:50 -08001# arm specific configs
2
3# These are used by the 32-bit targets, but not the 64-bit ones.
4libc_common_src_files_arm := \
5 bionic/legacy_32_bit_support.cpp \
6 bionic/ndk_cruft.cpp \
Elliott Hughes8d77bce2014-04-22 13:55:58 -07007 bionic/time64.c \
Dan Albert8e613cf2014-06-11 14:17:35 -07008 upstream-openbsd/lib/libc/stdio/putw.c \
Ying Wangf25d6772014-01-23 15:17:50 -08009
10# These are shared by all the 32-bit targets, but not the 64-bit ones.
11libc_bionic_src_files_arm := \
12 bionic/mmap.cpp
13
14libc_common_src_files_arm += \
15 bionic/memchr.c \
Ying Wangf25d6772014-01-23 15:17:50 -080016 bionic/memrchr.c \
17 bionic/strchr.cpp \
18 bionic/strnlen.c \
Elliott Hughes53e43292014-02-24 18:00:43 -080019 bionic/strrchr.cpp \
Ying Wangf25d6772014-01-23 15:17:50 -080020 upstream-freebsd/lib/libc/string/wcscat.c \
21 upstream-freebsd/lib/libc/string/wcschr.c \
22 upstream-freebsd/lib/libc/string/wcscmp.c \
23 upstream-freebsd/lib/libc/string/wcscpy.c \
24 upstream-freebsd/lib/libc/string/wcslen.c \
25 upstream-freebsd/lib/libc/string/wcsrchr.c \
26 upstream-freebsd/lib/libc/string/wmemcmp.c \
Bernhard Rosenkraenzer6f2bde32014-05-23 17:44:18 +020027 upstream-freebsd/lib/libc/string/wmemmove.c \
Elliott Hughes53e43292014-02-24 18:00:43 -080028 upstream-openbsd/lib/libc/string/bcopy.c \
Varvara Rainchik5a922842014-04-24 15:41:20 +040029 upstream-openbsd/lib/libc/string/stpcpy.c \
30 upstream-openbsd/lib/libc/string/stpncpy.c \
Elliott Hughes53e43292014-02-24 18:00:43 -080031 upstream-openbsd/lib/libc/string/strlcat.c \
32 upstream-openbsd/lib/libc/string/strlcpy.c \
33 upstream-openbsd/lib/libc/string/strncat.c \
34 upstream-openbsd/lib/libc/string/strncmp.c \
35 upstream-openbsd/lib/libc/string/strncpy.c \
Ying Wangf25d6772014-01-23 15:17:50 -080036
37# The C++ fortify function implementations for which there is an
38# arm assembler version.
39#
40# Fortify implementations of libc functions.
41# libc_common_src_files_arm +=
42# bionic/__memcpy_chk.cpp \
43# bionic/__memset_chk.cpp \
44# bionic/__strcpy_chk.cpp \
45# bionic/__strcat_chk.cpp \
46
Ying Wangf25d6772014-01-23 15:17:50 -080047##########################################
48### CPU specific source files
49libc_bionic_src_files_arm += \
Christopher Ferris04954a42013-02-26 01:30:00 -080050 arch-arm/bionic/abort_arm.S \
51 arch-arm/bionic/atomics_arm.c \
Elliott Hughes36d61882013-11-19 13:31:58 -080052 arch-arm/bionic/__bionic_clone.S \
Christopher Ferris04954a42013-02-26 01:30:00 -080053 arch-arm/bionic/_exit_with_stack_teardown.S \
Christopher Ferris04954a42013-02-26 01:30:00 -080054 arch-arm/bionic/libgcc_compat.c \
Christopher Ferris04954a42013-02-26 01:30:00 -080055 arch-arm/bionic/memcmp.S \
Elliott Hughes7dc2b7b2014-09-10 15:20:40 -070056 arch-arm/bionic/__restore.S \
Christopher Ferris04954a42013-02-26 01:30:00 -080057 arch-arm/bionic/_setjmp.S \
58 arch-arm/bionic/setjmp.S \
59 arch-arm/bionic/sigsetjmp.S \
Christopher Ferris04954a42013-02-26 01:30:00 -080060 arch-arm/bionic/syscall.S \
Christopher Ferris04954a42013-02-26 01:30:00 -080061
Elliott Hughes6e39ba72014-02-20 11:36:55 -080062libc_arch_static_src_files_arm := arch-arm/bionic/exidx_static.c
63libc_arch_dynamic_src_files_arm := arch-arm/bionic/exidx_dynamic.c
Christopher Ferris04954a42013-02-26 01:30:00 -080064
Dan Albertc82c0b72014-06-16 16:52:27 -070065libc_netbsd_src_files_arm := \
66 upstream-netbsd/common/lib/libc/hash/sha1/sha1.c \
67
Ying Wangf25d6772014-01-23 15:17:50 -080068## CPU variant specific source files
69ifeq ($(strip $(TARGET_$(my_2nd_arch_prefix)CPU_VARIANT)),)
70 $(warning TARGET_$(my_2nd_arch_prefix)ARCH is arm, but TARGET_$(my_2nd_arch_prefix)CPU_VARIANT is not defined)
Christopher Ferris04954a42013-02-26 01:30:00 -080071endif
Ying Wangf25d6772014-01-23 15:17:50 -080072cpu_variant_mk := $(LOCAL_PATH)/arch-arm/$(TARGET_$(my_2nd_arch_prefix)CPU_VARIANT)/$(TARGET_$(my_2nd_arch_prefix)CPU_VARIANT).mk
73ifeq ($(wildcard $(cpu_variant_mk)),)
Shu Zhang5b5d6e72014-03-12 11:18:41 +080074$(error "TARGET_$(my_2nd_arch_prefix)CPU_VARIANT not set or set to an unknown value. Possible values are cortex-a7, cortex-a8, cortex-a9, cortex-a15, krait, denver. Use generic for devices that do not have a CPU similar to any of the supported cpu variants.")
Ying Wangf25d6772014-01-23 15:17:50 -080075endif
76include $(cpu_variant_mk)
77libc_common_additional_dependencies += $(cpu_variant_mk)
Christopher Ferris04954a42013-02-26 01:30:00 -080078
Ying Wangf25d6772014-01-23 15:17:50 -080079cpu_variant_mk :=
80
Elliott Hughes6e39ba72014-02-20 11:36:55 -080081
Ying Wangf25d6772014-01-23 15:17:50 -080082libc_crt_target_cflags_arm := \
83 -I$(LOCAL_PATH)/arch-arm/include \
84 -mthumb-interwork
85
86libc_crt_target_so_cflags_arm :=
87
88libc_crt_target_crtbegin_file_arm := \
89 $(LOCAL_PATH)/arch-common/bionic/crtbegin.c
90
91libc_crt_target_crtbegin_so_file_arm := \
92 $(LOCAL_PATH)/arch-common/bionic/crtbegin_so.c