From e2e9ddc21c7a1b3fcb06fd303a44fc2c3aebfb20 Mon Sep 17 00:00:00 2001 From: Yuri Victorovich Date: Thu, 9 Jan 2025 07:41:39 -0700 Subject: [PATCH] misc/koboldcpp: Ignore portable flavor on arm64; Try again on 32-bit platforms Reported by: fallout (portable flavor on arm64) --- misc/koboldcpp/Makefile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/misc/koboldcpp/Makefile b/misc/koboldcpp/Makefile index 35033ca40e38..d69b4a67c72b 100644 --- a/misc/koboldcpp/Makefile +++ b/misc/koboldcpp/Makefile @@ -10,8 +10,8 @@ WWW= https://github.com/lostruins/koboldcpp LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE.md -BROKEN_armv7= compilation fails, see https://github.com/LostRuins/koboldcpp/issues/1129 -BROKEN_i386= compilation fails, see https://github.com/LostRuins/koboldcpp/issues/1129 +#BROKEN_armv7= compilation fails, see https://github.com/LostRuins/koboldcpp/issues/1129 +#BROKEN_i386= compilation fails, see https://github.com/LostRuins/koboldcpp/issues/1129 FLAVORS= default portable FLAVOR?= ${FLAVORS:[1]} @@ -66,4 +66,10 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/${embd} ${STAGEDIR}${DATADIR} .endfor -.include +.include + +.if ${ARCH} == aarch64 && ${FLAVOR} == portable +IGNORE= portable flavor isn't defined on aarch64 because it is based on AVX2, etc. (?) +.endif + +.include