diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-09-16 08:40:06 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-09-16 08:40:06 +0000 |
commit | a1928c54e874efc627380e5439a10bb5997f5979 (patch) | |
tree | 9639d70f36bdc5775cc3c5e1603503b921327907 | |
parent | .gitauthors: Add Dmitri Goutnik (dmgk) (diff) |
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)
-rw-r--r-- | math/py-pystan/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/py-pystan/Makefile b/math/py-pystan/Makefile index f2dc3daec44a..e1b8bdafa3a6 100644 --- a/math/py-pystan/Makefile +++ b/math/py-pystan/Makefile @@ -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} |