Date: Thu, 9 Jan 2025 19:53:03 GMT From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 373e4f55e0db - main - misc/koboldcpp: Ignore portable flavor on all arm architectures Message-ID: <202501091953.509Jr34V008307@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501091953.509Jr34V008307>