Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 May 2021 04:07:45 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: 6b8640a32278 - main - science/siesta: Broken on aarch64, powerpc* due to lack of IEEE754 support in gcc
Message-ID:  <202105190407.14J47jQY017473@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=6b8640a32278c2217553fb3e2a4a1342f56dafb1

commit 6b8640a32278c2217553fb3e2a4a1342f56dafb1
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2021-05-19 03:58:56 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2021-05-19 04:07:41 +0000

    science/siesta: Broken on aarch64, powerpc* due to lack of IEEE754 support in gcc
---
 science/siesta/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/science/siesta/Makefile b/science/siesta/Makefile
index 8371eb2f959e..9d1919aa625d 100644
--- a/science/siesta/Makefile
+++ b/science/siesta/Makefile
@@ -9,7 +9,9 @@ COMMENT=	Program to perform efficient electronic structure calculations
 LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/../COPYING
 
-BROKEN_aarch64=	Fatal Error: Cannot find an intrinsic module named 'ieee_arithmetic' at (1), see https://gitlab.com/siesta-project/siesta/-/issues/115
+.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.14J47jQY017473>