Date: Mon, 18 Apr 2022 21:22:31 GMT From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 22858dd24417 - main - graphics/GraphicsMagick: use clang for OPENMP on riscv64 Message-ID: <202204182122.23ILMV60077789@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=22858dd24417c4e821a08bdfaa1bb60943a244e7 commit 22858dd24417c4e821a08bdfaa1bb60943a244e7 Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2022-04-18 21:18:43 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2022-04-18 21:18:43 +0000 graphics/GraphicsMagick: use clang for OPENMP on riscv64 LLVM now has libomp and GCC is not ported anyway. --- graphics/GraphicsMagick/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/GraphicsMagick/Makefile b/graphics/GraphicsMagick/Makefile index 335339554536..9405fb6219d5 100644 --- a/graphics/GraphicsMagick/Makefile +++ b/graphics/GraphicsMagick/Makefile @@ -82,7 +82,7 @@ ZSTD_LIB_DEPENDS= libzstd.so:archivers/zstd .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MOPENMP} -.if ${ARCH} != aarch64 && ${ARCH} != amd64 && ${ARCH} != powerpc64 && ${ARCH} != powerpc64le +.if ${ARCH} != aarch64 && ${ARCH} != amd64 && ${ARCH} != powerpc64 && ${ARCH} != powerpc64le && ${ARCH} != riscv64 USES+= compiler:gcc-c++11-lib .endif .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202204182122.23ILMV60077789>