aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2022-02-14 11:38:53 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2022-02-14 11:38:53 +0000
commit5ebe1d0cddd11a02945d2f214787506132fd1ab6 (patch)
treecfa30e754c4ed863fb51dd7e128d8e8bb4854f4d
parent6b114229e1f550b2396b4fab66601e34f3652ff8 (diff)
downloadports-5ebe1d0cddd11a02945d2f214787506132fd1ab6.tar.gz
ports-5ebe1d0cddd11a02945d2f214787506132fd1ab6.zip
graphics/blender-lts29: disable SIMD on powerpc* and riscv*
Only supported on x86 and arm.
-rw-r--r--graphics/blender-lts29/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/blender-lts29/Makefile b/graphics/blender-lts29/Makefile
index 203f6311cef8..f314df67c4a5 100644
--- a/graphics/blender-lts29/Makefile
+++ b/graphics/blender-lts29/Makefile
@@ -178,8 +178,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}