diff options
| author | Yuri Victorovich <yuri@FreeBSD.org> | 2022-07-29 20:53:51 +0000 |
|---|---|---|
| committer | Yuri Victorovich <yuri@FreeBSD.org> | 2022-07-29 20:53:51 +0000 |
| commit | a3f6ca2af18b75e8db454b755a7388d2bf013ccb (patch) | |
| tree | e81799ec161c32d8d0a6714e8384d521d28fa024 | |
| parent | 96fd666304d3893d7c79b94093e708e5a3ebfeab (diff) | |
misc/mxnet: Broken on systems where OpenMP isn't enabled
Reported by: fallout
| -rw-r--r-- | misc/mxnet/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
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 \ |
