diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2015-02-17 09:26:54 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2015-02-17 09:26:54 +0000 |
commit | 72ba8b107a891d6b4094f1fc74b548062dd2ead7 (patch) | |
tree | df19d38dd573f8583770b98053aaca69f2338df7 /newlib/libc/machine/arm/Makefile.am | |
parent | 554f33c48d069a0cbd1748c87ee9d4f4e22f8c01 (diff) | |
download | cygnal-72ba8b107a891d6b4094f1fc74b548062dd2ead7.tar.gz cygnal-72ba8b107a891d6b4094f1fc74b548062dd2ead7.tar.bz2 cygnal-72ba8b107a891d6b4094f1fc74b548062dd2ead7.zip |
* libc/machine/arm/aeabi_memclr.c: New file to support
aeabi_memclr.
* libc/machine/arm/aeabi_memset.c: New file to support
aeabi_memset.
* libc/machine/arm/aeabi_memset-soft.S: Ditto.
* libc/machine/arm/aeabi_memset-arm.S: Ditto.
* libc/machine/arm/aeabi_memset-thumb.S: Ditto.
* libc/machine/arm/aeabi_memset-thumb2.S: Ditto.
* libc/machine/arm/Makefile.am: Add dependencies.
* libc/machine/arm/Makefile.in: Regenerated.
Diffstat (limited to 'newlib/libc/machine/arm/Makefile.am')
-rw-r--r-- | newlib/libc/machine/arm/Makefile.am | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/newlib/libc/machine/arm/Makefile.am b/newlib/libc/machine/arm/Makefile.am index e1d768a0c..55bc0a7ad 100644 --- a/newlib/libc/machine/arm/Makefile.am +++ b/newlib/libc/machine/arm/Makefile.am @@ -50,7 +50,8 @@ endif !OPT_SIZE lib_a_SOURCES = setjmp.S access.c strcmp.S strcpy.c \ $(MEMCPY_SRC) $(MEMCHR_SRC) $(STRLEN_SRC) \ strlen-armv7.S aeabi_memcpy.c aeabi_memcpy-armv7a.S \ - aeabi_memmove.c aeabi_memmove-soft.S + aeabi_memmove.c aeabi_memmove-soft.S \ + aeabi_memset.c aeabi_memset-soft.S aeabi_memclr.c lib_a_CCASFLAGS=$(AM_CCASFLAGS) lib_a_CFLAGS = $(AM_CFLAGS) @@ -64,7 +65,9 @@ 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_memmove-arm.S +AEABI_MEMSET_DEP=aeabi_memset-thumb.S aeabi_memset-thumb2.S \ + aeabi_memset-arm.S $(lpfx)memcpy.o: $(MEMCPY_DEP) @@ -77,3 +80,7 @@ $(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) |