blob: fbde87cef578a1f52175b0c3c73c60fa90e225cb [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
Elliott Hughesb8dc9bb2014-02-20 14:35:20 -080047libc_common_cflags_arm := -DSOFTFLOAT
Ying Wangf25d6772014-01-23 15:17:50 -080048
49##########################################
50### CPU specific source files
51libc_bionic_src_files_arm += \
Christopher Ferris04954a42013-02-26 01:30:00 -080052 arch-arm/bionic/abort_arm.S \
53 arch-arm/bionic/atomics_arm.c \
Elliott Hughes36d61882013-11-19 13:31:58 -080054 arch-arm/bionic/__bionic_clone.S \
Christopher Ferris04954a42013-02-26 01:30:00 -080055 arch-arm/bionic/_exit_with_stack_teardown.S \
Christopher Ferris04954a42013-02-26 01:30:00 -080056 arch-arm/bionic/libgcc_compat.c \
Christopher Ferris04954a42013-02-26 01:30:00 -080057 arch-arm/bionic/memcmp.S \
Elliott Hughes7dc2b7b2014-09-10 15:20:40 -070058 arch-arm/bionic/__restore_rt.S \
59 arch-arm/bionic/__restore.S \
Christopher Ferris04954a42013-02-26 01:30:00 -080060 arch-arm/bionic/_setjmp.S \
61 arch-arm/bionic/setjmp.S \
62 arch-arm/bionic/sigsetjmp.S \
Christopher Ferris04954a42013-02-26 01:30:00 -080063 arch-arm/bionic/syscall.S \
Christopher Ferris04954a42013-02-26 01:30:00 -080064
Elliott Hughes6e39ba72014-02-20 11:36:55 -080065libc_arch_static_src_files_arm := arch-arm/bionic/exidx_static.c
66libc_arch_dynamic_src_files_arm := arch-arm/bionic/exidx_dynamic.c
Christopher Ferris04954a42013-02-26 01:30:00 -080067
Dan Albertc82c0b72014-06-16 16:52:27 -070068libc_netbsd_src_files_arm := \
69 upstream-netbsd/common/lib/libc/hash/sha1/sha1.c \
70
Ying Wangf25d6772014-01-23 15:17:50 -080071## CPU variant specific source files
72ifeq ($(strip $(TARGET_$(my_2nd_arch_prefix)CPU_VARIANT)),)
73 $(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 -080074endif
Ying Wangf25d6772014-01-23 15:17:50 -080075cpu_variant_mk := $(LOCAL_PATH)/arch-arm/$(TARGET_$(my_2nd_arch_prefix)CPU_VARIANT)/$(TARGET_$(my_2nd_arch_prefix)CPU_VARIANT).mk
76ifeq ($(wildcard $(cpu_variant_mk)),)
Shu Zhang5b5d6e72014-03-12 11:18:41 +080077$(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 -080078endif
79include $(cpu_variant_mk)
80libc_common_additional_dependencies += $(cpu_variant_mk)
Christopher Ferris04954a42013-02-26 01:30:00 -080081
Ying Wangf25d6772014-01-23 15:17:50 -080082cpu_variant_mk :=
83
Elliott Hughes6e39ba72014-02-20 11:36:55 -080084
Ying Wangf25d6772014-01-23 15:17:50 -080085libc_crt_target_cflags_arm := \
86 -I$(LOCAL_PATH)/arch-arm/include \
87 -mthumb-interwork
88
89libc_crt_target_so_cflags_arm :=
90
91libc_crt_target_crtbegin_file_arm := \
92 $(LOCAL_PATH)/arch-common/bionic/crtbegin.c
93
94libc_crt_target_crtbegin_so_file_arm := \
95 $(LOCAL_PATH)/arch-common/bionic/crtbegin_so.c