svn commit: r512147 - head/math/py-pystan

Piotr Kubaj pkubaj at FreeBSD.org
Mon Sep 16 08:40:06 UTC 2019


Author: pkubaj
Date: Mon Sep 16 08:40:06 2019
New Revision: 512147
URL: https://svnweb.freebsd.org/changeset/ports/512147

Log:
  math/py-pystan: fix build with GCC architectures
  
  Requires C++14:
  cc1plus: error: unrecognized command line option "-std=c++1y"
  
  Approved by:    mentors (implicit approval)

Modified:
  head/math/py-pystan/Makefile

Modified: head/math/py-pystan/Makefile
==============================================================================
--- head/math/py-pystan/Makefile	Mon Sep 16 08:24:05 2019	(r512146)
+++ head/math/py-pystan/Makefile	Mon Sep 16 08:40:06 2019	(r512147)
@@ -13,7 +13,7 @@ COMMENT=	PyStan is the Python interface for Stan
 LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		python shebangfix
+USES=		compiler:c++14-lang python shebangfix
 USE_PYTHON=	autoplist distutils
 
 BUILD_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}cython>0:lang/cython@${PY_FLAVOR}


More information about the svn-ports-head mailing list