f25d677147
1. Moved arch-specific setup to their own files: - <arch>/<arch>.mk, arch-specific configs. Variables in those config end with the arch name. - removed the extra complexity introduced by function libc-add-cpu-variant-src, which seems to be not very useful these days. 2. Separated out the crt object files generation rules and set up the rules for both TARGET_ARCH and TARGET_2ND_ARCH. 3. Build all the libraries for both TARGET_ARCH and TARGET_2ND_ARCH, with the arch-specific LOCAL_ variables. Bug: 11654773 Change-Id: I9c2d85db0affa49199d182236d2210060a321421
13 lines
437 B
Makefile
13 lines
437 B
Makefile
libc_bionic_src_files_arm += \
|
|
arch-arm/krait/bionic/memcpy.S \
|
|
arch-arm/krait/bionic/memset.S \
|
|
arch-arm/krait/bionic/strcmp.S \
|
|
arch-arm/krait/bionic/__strcat_chk.S \
|
|
arch-arm/krait/bionic/__strcpy_chk.S \
|
|
|
|
# Use cortex-a15 versions of strcat/strcpy/strlen.
|
|
libc_bionic_src_files_arm += \
|
|
arch-arm/cortex-a15/bionic/strcat.S \
|
|
arch-arm/cortex-a15/bionic/strcpy.S \
|
|
arch-arm/cortex-a15/bionic/strlen.S \
|