git: 443d7c91488e - main - science/dftbplus: Broken on aarch64, powerpc* due to lack of IEEE754 support in gcc

Yuri Victorovich yuri at FreeBSD.org
Wed May 19 04:07:47 UTC 2021


The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=443d7c91488ed6e654cafa0716dc550683296af4

commit 443d7c91488ed6e654cafa0716dc550683296af4
Author:     Yuri Victorovich <yuri at FreeBSD.org>
AuthorDate: 2021-05-19 04:04:06 +0000
Commit:     Yuri Victorovich <yuri at 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


More information about the dev-commits-ports-all mailing list