git: 373e4f55e0db - main - misc/koboldcpp: Ignore portable flavor on all arm architectures
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 09 Jan 2025 19:53:03 UTC
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=373e4f55e0db1ccaf5a3913593be7133feb55bb2 commit 373e4f55e0db1ccaf5a3913593be7133feb55bb2 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2025-01-09 14:41:39 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2025-01-09 14:41:39 +0000 misc/koboldcpp: Ignore portable flavor on all arm architectures --- misc/koboldcpp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/koboldcpp/Makefile b/misc/koboldcpp/Makefile index d69b4a67c72b..7a024e76eb32 100644 --- a/misc/koboldcpp/Makefile +++ b/misc/koboldcpp/Makefile @@ -68,8 +68,8 @@ do-install: .include <bsd.port.pre.mk> -.if ${ARCH} == aarch64 && ${FLAVOR} == portable -IGNORE= portable flavor isn't defined on aarch64 because it is based on AVX2, etc. (?) +.if (${ARCH} == aarch64 || ${ARCH} == armv7) && ${FLAVOR} == portable +IGNORE= portable flavor isn't defined on arm* because it is based on AVX2, etc. (?) .endif .include <bsd.port.post.mk>