diff options
author | Ed Maste <emaste@FreeBSD.org> | 2025-01-17 16:22:39 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2025-01-17 16:23:56 +0000 |
commit | 72f092ee019447c76ecb483c3f475313cf9dd5dd (patch) | |
tree | 077652b0e00ae5667322fbbb25a51baee03a04bb /lib | |
parent | b8cdbe1852ef5df4ba3c7a021d9632bde2e61327 (diff) |
libc: Add include path for aarch64 memchr.S
Reported by: bapt
Sponsored by: The FreeBSD Foundation
Fixes: d355c28a0954 ("depend-cleanup: bea89d038ac5 also moved memchr")
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/aarch64/string/Makefile.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libc/aarch64/string/Makefile.inc b/lib/libc/aarch64/string/Makefile.inc index f0f0f6495782..35523fb954be 100644 --- a/lib/libc/aarch64/string/Makefile.inc +++ b/lib/libc/aarch64/string/Makefile.inc @@ -54,3 +54,7 @@ CLEANFILES+= ${FUNC}.S MDSRCS+= ${FUNC}.S CFLAGS.${FUNC}.S+=-I${SRCTOP}/contrib/arm-optimized-routines/string .endfor + +# memchr.S is a wrapper in the src tree for the implementation from +# arm-optimized-routines +CFLAGS.memchr.S+=-I${SRCTOP}/contrib/arm-optimized-routines/string |