Date: Thu, 16 Jan 2025 11:30:46 GMT From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org Subject: git: b6287a471964 - 2025Q1 - misc/koboldcpp: Ignore portable flavor on all arm architectures Message-ID: <202501161130.50GBUk6H049799@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch 2025Q1 has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=b6287a47196467e1fa7a6f356013e26abd561cf2 commit b6287a47196467e1fa7a6f356013e26abd561cf2 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2025-01-09 14:41:39 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2025-01-16 11:30:42 +0000 misc/koboldcpp: Ignore portable flavor on all arm architectures (cherry picked from commit 373e4f55e0db1ccaf5a3913593be7133feb55bb2) --- misc/koboldcpp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/koboldcpp/Makefile b/misc/koboldcpp/Makefile index a6254d6647b8..ffdfced69ae9 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?202501161130.50GBUk6H049799>