Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Sep 2016 15:08:03 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r305974 - head/lib/libc/aarch64/string
Message-ID:  <201609191508.u8JF833v010044@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: andrew
Date: Mon Sep 19 15:08:03 2016
New Revision: 305974
URL: https://svnweb.freebsd.org/changeset/base/305974

Log:
  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

Added:
  head/lib/libc/aarch64/string/
  head/lib/libc/aarch64/string/Makefile.inc   (contents, props changed)

Added: head/lib/libc/aarch64/string/Makefile.inc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lib/libc/aarch64/string/Makefile.inc	Mon Sep 19 15:08:03 2016	(r305974)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609191508.u8JF833v010044>