Date: Wed, 19 May 2021 04:07:46 GMT From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 443d7c91488e - main - science/dftbplus: Broken on aarch64, powerpc* due to lack of IEEE754 support in gcc Message-ID: <202105190407.14J47k2t017494@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=443d7c91488ed6e654cafa0716dc550683296af4 commit 443d7c91488ed6e654cafa0716dc550683296af4 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2021-05-19 04:04:06 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2021-05-19 04:07:42 +0000 science/dftbplus: Broken on aarch64, powerpc* due to lack of IEEE754 support in gcc --- science/dftbplus/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/science/dftbplus/Makefile b/science/dftbplus/Makefile index 582a329520ab..d887bdddf0cb 100644 --- a/science/dftbplus/Makefile +++ b/science/dftbplus/Makefile @@ -8,9 +8,9 @@ COMMENT= DFTB+: Package for performing fast atomistic simulations LICENSE= GPLv3 # main code is under LGPL3+, the bundled dftd3-lib is under GPLv1+, this makes the result GPLv3 (based on https://www.gnu.org/licenses/gpl-faq.html#AllCompatibility) -BROKEN_aarch64= fails to compile: lbfgs.f90:18:19: Cannot find an intrinsic module named 'ieee_arithmetic' at (1) -BROKEN_powerpc64= fails to compile: lbfgs.f90:18:19: Cannot find an intrinsic module named 'ieee_arithmetic' at (1) -BROKEN_powerpc64le= fails to compile: lbfgs.f90:18:19: Cannot find an intrinsic module named 'ieee_arithmetic' at (1) +.for arch in aarch64 powerpc powerpc64 powerpc64le +BROKEN_${arch}= Lack of IEEE754 support in gcc causes "Cannot find an intrinsic module named 'ieee_arithmetic'", see bug#255890 +.endfor LIB_DEPENDS= libblas.so:math/blas \ liblapack.so:math/lapack
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105190407.14J47k2t017494>