diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-02-14 11:38:52 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-02-14 11:38:52 +0000 |
commit | 6b114229e1f550b2396b4fab66601e34f3652ff8 (patch) | |
tree | 0765c647fa13578c9d7440bd6b9f939a52268feb | |
parent | 7ec8d8b7bbe0faf5af446c30dd72080c23367034 (diff) |
graphics/blender: disable SSE on powerpc* / riscv*
-rw-r--r-- | graphics/blender/Makefile | 4 |
1 files 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} |