aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/aarch64/string/Makefile.inc
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2016-09-19 15:08:03 +0000
committerAndrew Turner <andrew@FreeBSD.org>2016-09-19 15:08:03 +0000
commit5a3a700931c9742b46782d2cec0519660e9e77c6 (patch)
treef5433210154197f460ef31d15fbdce4786386837 /lib/libc/aarch64/string/Makefile.inc
parent27044e1770e79240a116c8d48ac0afc82b02de96 (diff)
downloadsrc-5a3a700931c9742b46782d2cec0519660e9e77c6.tar.gz
src-5a3a700931c9742b46782d2cec0519660e9e77c6.zip
Attach the cortex strings library to the build. Only a subset of functions
have been added as some don't seem to be improvements over the libc C implementation. Obtained from: ABT Systems Ltd Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=305974
Diffstat (limited to 'lib/libc/aarch64/string/Makefile.inc')
-rw-r--r--lib/libc/aarch64/string/Makefile.inc19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/libc/aarch64/string/Makefile.inc b/lib/libc/aarch64/string/Makefile.inc
new file mode 100644
index 000000000000..218a635da1e1
--- /dev/null
+++ b/lib/libc/aarch64/string/Makefile.inc
@@ -0,0 +1,19 @@
+# $FreeBSD$
+#
+# String handling from the Cortex Strings library
+# https://git.linaro.org/toolchain/cortex-strings.git
+#
+
+.PATH: ${LIBC_SRCTOP}/../../contrib/cortex-strings/src/aarch64
+
+MDSRCS+=memchr.S \
+ memcmp.S \
+ memcpy.S \
+ memmove.S \
+ memset.S \
+ strchr.S \
+ strcmp.S \
+ strcpy.S \
+ strlen.S \
+ strncmp.S \
+ strnlen.S