diff options
author | pkubaj <pkubaj@FreeBSD.org> | 2019-07-19 03:34:26 +0800 |
---|---|---|
committer | pkubaj <pkubaj@FreeBSD.org> | 2019-07-19 03:34:26 +0800 |
commit | 2201a2ba40755850c0cec5e03685299526ca9bcc (patch) | |
tree | f2edb8a6796559a4be8195d44c6a6d476ca3ab98 /math | |
parent | 8cddebe4028a9dbd42f4bd0aec188caaff03ba4f (diff) | |
download | freebsd-ports-gnome-2201a2ba40755850c0cec5e03685299526ca9bcc.tar.gz freebsd-ports-gnome-2201a2ba40755850c0cec5e03685299526ca9bcc.tar.zst freebsd-ports-gnome-2201a2ba40755850c0cec5e03685299526ca9bcc.zip |
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)
Diffstat (limited to 'math')
-rw-r--r-- | math/dbcsr/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/dbcsr/Makefile b/math/dbcsr/Makefile index 093b24fa0d70..ca00542d0939 100644 --- a/math/dbcsr/Makefile +++ b/math/dbcsr/Makefile @@ -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 |