svn commit: r506874 - head/math/dbcsr

Piotr Kubaj pkubaj at FreeBSD.org
Thu Jul 18 19:34:27 UTC 2019


Author: pkubaj
Date: Thu Jul 18 19:34:26 2019
New Revision: 506874
URL: https://svnweb.freebsd.org/changeset/ports/506874

Log:
  math/dbcsr: fix build on GCC architectures
  
  This port uses C++14, add USES=compiler:c++14-lang:
    target_compile_features The compiler feature "cxx_std_14" is not known to
    CXX compiler
  
  Approved by:	mentors (implicit approval)

Modified:
  head/math/dbcsr/Makefile

Modified: head/math/dbcsr/Makefile
==============================================================================
--- head/math/dbcsr/Makefile	Thu Jul 18 19:21:07 2019	(r506873)
+++ head/math/dbcsr/Makefile	Thu Jul 18 19:34:26 2019	(r506874)
@@ -14,7 +14,8 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 BUILD_DEPENDS=	fypp:devel/py-fypp@${PY_FLAVOR}
 
-USES=		blaslapack:openblas cmake:noninja fortran python:build
+USES=		blaslapack:openblas cmake:noninja compiler:c++14-lang fortran \
+		python:build
 USE_GITHUB=	yes
 GH_ACCOUNT=	cp2k
 USE_LDCONFIG=	yes


More information about the svn-ports-head mailing list