mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-17 12:01:53 +08:00
bcd5e8e3f9
The patch adds strlen.S to contain the complementary preprocessor logic to strlen-stub.c intended to provide #inclusion of alternative .S implementations. Initially we just include the existing strlen-armv7.S implementation. We rewrite _ISA_ARMV7 in both strlen.S and strlen-stub.c to use the underlying existing underlying defintion from arm_asm.h in order to avoide including that file, this is in effect the first step towards a move to ACLE predefines only. Tested by building newlib and comparing libc.a binaries before and after for all permutations of: Architectures: armv4 armv4t armv5 armv5t armv5te armv6 armv6j armv6k armv6z armv6kz armv6t2 armv6-m armv6s-m armv7 armv7-a armv7ve armv7-r armv7-m armv7e-m armv8-a iwmmxt iwmmxt2 ISAs: thumb arm Optimization Levels: Os O2 Excluding: armv6s-m -mthumb armv6-m -mthumb armv6zk -mthumb armv6z -mthumb armv6k -mthumb armv6j -mthumb
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
## Process this file with automake to generate Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = cygnus
|
|
|
|
INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
|
|
|
|
AM_CCASFLAGS = $(INCLUDES)
|
|
|
|
noinst_LIBRARIES = lib.a
|
|
|
|
lib_a_SOURCES = setjmp.S access.c strcmp.S strcpy.c \
|
|
aeabi_memcpy.c aeabi_memcpy-armv7a.S \
|
|
aeabi_memmove.c aeabi_memmove-soft.S \
|
|
aeabi_memset.c aeabi_memset-soft.S aeabi_memclr.c
|
|
lib_a_SOURCES += memchr-stub.c
|
|
lib_a_SOURCES += memchr.S
|
|
lib_a_SOURCES += memcpy-stub.c
|
|
lib_a_SOURCES += memcpy.S
|
|
lib_a_SOURCES += strlen-stub.c
|
|
lib_a_SOURCES += strlen.S
|
|
|
|
lib_a_CCASFLAGS=$(AM_CCASFLAGS)
|
|
lib_a_CFLAGS = $(AM_CFLAGS)
|
|
|
|
ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
|
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
|
|
|
MEMCHR_DEP=acle-compat.h arm_asm.h
|
|
MEMCPY_DEP=memcpy-armv7a.S memcpy-armv7m.S
|
|
STRCMP_DEP=strcmp-arm-tiny.S strcmp-armv4.S strcmp-armv4t.S strcmp-armv6.S \
|
|
strcmp-armv6m.S strcmp-armv7.S strcmp-armv7m.S
|
|
AEABI_MEMMOVE_DEP=aeabi_memmove-thumb.S aeabi_memmove-thumb2.S \
|
|
aeabi_memmove-arm.S
|
|
AEABI_MEMSET_DEP=aeabi_memset-thumb.S aeabi_memset-thumb2.S \
|
|
aeabi_memset-arm.S
|
|
|
|
$(lpfx)memchr.o: $(MEMCHR_DEP)
|
|
$(lpfx)memchr.obj: $(MEMCHR_DEP)
|
|
|
|
$(lpfx)memcpy.o: $(MEMCPY_DEP)
|
|
|
|
$(lpfx)memcpy.obj: $(MEMCPY_DEP)
|
|
|
|
$(lpfx)strcmp.o: $(STRCMP_DEP)
|
|
|
|
$(lpfx)strcmp.obj: $(STRCMP_DEP)
|
|
|
|
$(lpfx)aeabi_memmove.o: $(AEABI_MEMMOVE_DEP)
|
|
|
|
$(lpfx)aeabi_memmove.obj: $(AEABI_MEMMOVE_DEP)
|
|
|
|
$(lpfx)aeabi_memset.o: $(AEABI_MEMSET_DEP)
|
|
|
|
$(lpfx)aeabi_memset.obj: $(AEABI_MEMSET_DEP)
|