svn commit: r525702 - head/misc/mxnet

Piotr Kubaj pkubaj at FreeBSD.org
Mon Feb 10 12:19:54 UTC 2020


Author: pkubaj
Date: Mon Feb 10 12:19:53 2020
New Revision: 525702
URL: https://svnweb.freebsd.org/changeset/ports/525702

Log:
  misc/mxnet: fix build on GCC architectures
  
  Newer GCC is required after OpenBlas update:
  CMake Error at /usr/local/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:146 (message):
    Could NOT find OpenMP_CXX (missing: OpenMP_CXX_FLAGS OpenMP_CXX_LIB_NAMES)

Modified:
  head/misc/mxnet/Makefile

Modified: head/misc/mxnet/Makefile
==============================================================================
--- head/misc/mxnet/Makefile	Mon Feb 10 11:19:56 2020	(r525701)
+++ head/misc/mxnet/Makefile	Mon Feb 10 12:19:53 2020	(r525702)
@@ -22,7 +22,7 @@ LIB_DEPENDS=	libdmlc.so:devel/dmlc-core \
 		libomp.so:devel/openmp \
 		libopenblas.so:math/openblas
 
-USES=		cmake localbase:ldflags
+USES=		cmake compiler:c++11-lang localbase:ldflags
 USE_GITHUB=	yes
 GH_ACCOUNT=	apache
 GH_PROJECT=	incubator-mxnet


More information about the svn-ports-all mailing list