From 3082a020e0f84b0824563ff90fc21ad344b34321 Mon Sep 17 00:00:00 2001 From: Mark Linimon Date: Thu, 30 Nov 2017 08:22:47 +0000 Subject: [PATCH] NO_ASM is also needed on armv7. Approved by: portmgr (tier-2 blanket) --- math/cln/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/cln/Makefile b/math/cln/Makefile index c34c8fb7415a..52cdbd331088 100644 --- a/math/cln/Makefile +++ b/math/cln/Makefile @@ -25,7 +25,7 @@ BROKEN_aarch64= Fails to compile: error: declaration of divu_64_rest in global s .include -.if ${ARCH} == aarch64 || ${ARCH} == armv6 +.if ${ARCH} == aarch64 || ${ARCH} == armv6 || ${ARCH} == armv7 CPPFLAGS+= -DNO_ASM .endif