git: 6b114229e1f5 - main - graphics/blender: disable SSE on powerpc* / riscv*
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 14 Feb 2022 11:41:23 UTC
The branch main has been updated by pkubaj:
URL: https://cgit.FreeBSD.org/ports/commit/?id=6b114229e1f550b2396b4fab66601e34f3652ff8
commit 6b114229e1f550b2396b4fab66601e34f3652ff8
Author: Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2022-02-14 11:38:52 +0000
Commit: Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2022-02-14 11:38:52 +0000
graphics/blender: disable SSE on powerpc* / riscv*
---
graphics/blender/Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/graphics/blender/Makefile b/graphics/blender/Makefile
index d0431575e617..3a24af5f817e 100644
--- a/graphics/blender/Makefile
+++ b/graphics/blender/Makefile
@@ -177,8 +177,8 @@ CMAKE_ARGS+= -DWITH_GHOST_DEBUG:BOOL=ON
.include <bsd.port.options.mk>
-.if ${ARCH} != amd64 && ${ARCH} != i386
-CMAKE_ARGS+= -DWITH_CPU_SSE:BOOL=OFF
+.if ${ARCH:Mpowerpc*} || ${ARCH:Mriscv64*}
+CMAKE_ARGS+= -DWITH_CPU_SIMD:BOOL=OFF
.endif
.if ${LLVM_DEFAULT:M[678]0}