mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
The Arm Optimized Routines don't exist in 13. I missed this as my
builds succeeded, likely due to stale depends files.
This reverts commit bfd10d146b.
20 lines
318 B
Makefile
20 lines
318 B
Makefile
# $FreeBSD$
|
|
#
|
|
# String handling from the Cortex Strings library
|
|
# https://git.linaro.org/toolchain/cortex-strings.git
|
|
#
|
|
|
|
.PATH: ${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
|