Date: Fri, 29 Jul 2022 20:55:21 GMT From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org Subject: git: eab939801485 - 2022Q3 - misc/mxnet: Broken on systems where OpenMP isn't enabled Message-ID: <202207292055.26TKtLlt003319@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch 2022Q3 has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=eab939801485ed287d4346b79c6dbfc5b0bed29b commit eab939801485ed287d4346b79c6dbfc5b0bed29b Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2022-07-29 20:53:51 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2022-07-29 20:55:11 +0000 misc/mxnet: Broken on systems where OpenMP isn't enabled Reported by: fallout (cherry picked from commit a3f6ca2af18b75e8db454b755a7388d2bf013ccb) --- misc/mxnet/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/misc/mxnet/Makefile b/misc/mxnet/Makefile index 861000eb5c7b..2847bf8696f4 100644 --- a/misc/mxnet/Makefile +++ b/misc/mxnet/Makefile @@ -8,6 +8,9 @@ COMMENT= Apache MXNet: Ultra-scalable deep learning framework LICENSE= APACHE20 BROKEN_i386= https://github.com/apache/incubator-mxnet/issues/20832 +.if !exists(/usr/include/omp.h) +BROKEN= requires OpenMP support that is missing on this architecture +.endif BUILD_DEPENDS= googletest>0:devel/googletest LIB_DEPENDS= libdmlc.so:devel/dmlc-core \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202207292055.26TKtLlt003319>